Skip to content

Commit 4e880f1

Browse files
authoredNov 8, 2024··
Fix incorrect analytics mapping for UTDs. (#3497)
* Fix incorrect analytics mapping for UTDs. * Upgrade GitHub workflows to use macOS 15.
1 parent 4f8565c commit 4e880f1

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed
 

‎.github/workflows/danger.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
build:
99
name: Danger
10-
runs-on: macos-14
10+
runs-on: macos-15
1111

1212
steps:
1313
- name: Checkout

‎.github/workflows/pr-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
if: contains(github.event.pull_request.labels.*.name, 'Trigger-PR-Build')
1212

1313
name: Release
14-
runs-on: macos-14
14+
runs-on: macos-15
1515

1616
concurrency:
1717
# Only allow a single run of this workflow on each branch, automatically cancelling older runs.

‎.github/workflows/translations-pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
open-translations-pr:
10-
runs-on: macos-14
10+
runs-on: macos-15
1111
# Skip in forks
1212
if: github.repository == 'element-hq/element-x-ios'
1313
steps:

‎.github/workflows/unit_tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
tests:
1313
name: Tests
14-
runs-on: macos-14
14+
runs-on: macos-15
1515

1616
concurrency:
1717
# Only allow a single run of this workflow on each branch, automatically cancelling older runs.

‎.github/workflows/unit_tests_enterprise.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
tests:
1313
name: Tests (Enterprise)
14-
runs-on: macos-14
14+
runs-on: macos-15
1515

1616
# Skip in forks
1717
if: github.repository == 'element-hq/element-x-ios'

‎ElementX/Sources/FlowCoordinators/UserSessionFlowCoordinator.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ class UserSessionFlowCoordinator: FlowCoordinatorProtocol {
368368

369369
switch info.cause {
370370
case .unknown:
371-
analytics.trackError(context: nil, domain: .E2EE, name: .UnknownError, timeToDecryptMillis: timeToDecryptMs)
371+
analytics.trackError(context: nil, domain: .E2EE, name: .OlmKeysNotSentError, timeToDecryptMillis: timeToDecryptMs)
372372
case .unknownDevice:
373373
analytics.trackError(context: nil, domain: .E2EE, name: .ExpectedSentByInsecureDevice, timeToDecryptMillis: timeToDecryptMs)
374374
case .unsignedDevice:

0 commit comments

Comments
 (0)
Please sign in to comment.