Fix incorrect analytics mapping for UTDs. (#3497)

* Fix incorrect analytics mapping for UTDs.

* Upgrade GitHub workflows to use macOS 15.
This commit is contained in:
Doug 2024-11-08 08:36:15 +00:00 committed by GitHub
parent 4f8565c3b4
commit 4e880f1924
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 6 additions and 6 deletions

View File

@ -7,7 +7,7 @@ on:
jobs:
build:
name: Danger
runs-on: macos-14
runs-on: macos-15
steps:
- name: Checkout

View File

@ -11,7 +11,7 @@ jobs:
if: contains(github.event.pull_request.labels.*.name, 'Trigger-PR-Build')
name: Release
runs-on: macos-14
runs-on: macos-15
concurrency:
# Only allow a single run of this workflow on each branch, automatically cancelling older runs.

View File

@ -7,7 +7,7 @@ on:
jobs:
open-translations-pr:
runs-on: macos-14
runs-on: macos-15
# Skip in forks
if: github.repository == 'element-hq/element-x-ios'
steps:

View File

@ -11,7 +11,7 @@ on:
jobs:
tests:
name: Tests
runs-on: macos-14
runs-on: macos-15
concurrency:
# Only allow a single run of this workflow on each branch, automatically cancelling older runs.

View File

@ -11,7 +11,7 @@ on:
jobs:
tests:
name: Tests (Enterprise)
runs-on: macos-14
runs-on: macos-15
# Skip in forks
if: github.repository == 'element-hq/element-x-ios'

View File

@ -368,7 +368,7 @@ class UserSessionFlowCoordinator: FlowCoordinatorProtocol {
switch info.cause {
case .unknown:
analytics.trackError(context: nil, domain: .E2EE, name: .UnknownError, timeToDecryptMillis: timeToDecryptMs)
analytics.trackError(context: nil, domain: .E2EE, name: .OlmKeysNotSentError, timeToDecryptMillis: timeToDecryptMs)
case .unknownDevice:
analytics.trackError(context: nil, domain: .E2EE, name: .ExpectedSentByInsecureDevice, timeToDecryptMillis: timeToDecryptMs)
case .unsignedDevice: