mirror of
https://github.com/element-hq/element-x-ios.git
synced 2025-03-10 21:39:12 +00:00
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:
parent
4f8565c3b4
commit
4e880f1924
2
.github/workflows/danger.yml
vendored
2
.github/workflows/danger.yml
vendored
@ -7,7 +7,7 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Danger
|
name: Danger
|
||||||
runs-on: macos-14
|
runs-on: macos-15
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
2
.github/workflows/pr-build.yml
vendored
2
.github/workflows/pr-build.yml
vendored
@ -11,7 +11,7 @@ jobs:
|
|||||||
if: contains(github.event.pull_request.labels.*.name, 'Trigger-PR-Build')
|
if: contains(github.event.pull_request.labels.*.name, 'Trigger-PR-Build')
|
||||||
|
|
||||||
name: Release
|
name: Release
|
||||||
runs-on: macos-14
|
runs-on: macos-15
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
# Only allow a single run of this workflow on each branch, automatically cancelling older runs.
|
# Only allow a single run of this workflow on each branch, automatically cancelling older runs.
|
||||||
|
2
.github/workflows/translations-pr.yml
vendored
2
.github/workflows/translations-pr.yml
vendored
@ -7,7 +7,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
open-translations-pr:
|
open-translations-pr:
|
||||||
runs-on: macos-14
|
runs-on: macos-15
|
||||||
# Skip in forks
|
# Skip in forks
|
||||||
if: github.repository == 'element-hq/element-x-ios'
|
if: github.repository == 'element-hq/element-x-ios'
|
||||||
steps:
|
steps:
|
||||||
|
2
.github/workflows/unit_tests.yml
vendored
2
.github/workflows/unit_tests.yml
vendored
@ -11,7 +11,7 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
tests:
|
tests:
|
||||||
name: Tests
|
name: Tests
|
||||||
runs-on: macos-14
|
runs-on: macos-15
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
# Only allow a single run of this workflow on each branch, automatically cancelling older runs.
|
# Only allow a single run of this workflow on each branch, automatically cancelling older runs.
|
||||||
|
2
.github/workflows/unit_tests_enterprise.yml
vendored
2
.github/workflows/unit_tests_enterprise.yml
vendored
@ -11,7 +11,7 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
tests:
|
tests:
|
||||||
name: Tests (Enterprise)
|
name: Tests (Enterprise)
|
||||||
runs-on: macos-14
|
runs-on: macos-15
|
||||||
|
|
||||||
# Skip in forks
|
# Skip in forks
|
||||||
if: github.repository == 'element-hq/element-x-ios'
|
if: github.repository == 'element-hq/element-x-ios'
|
||||||
|
@ -368,7 +368,7 @@ class UserSessionFlowCoordinator: FlowCoordinatorProtocol {
|
|||||||
|
|
||||||
switch info.cause {
|
switch info.cause {
|
||||||
case .unknown:
|
case .unknown:
|
||||||
analytics.trackError(context: nil, domain: .E2EE, name: .UnknownError, timeToDecryptMillis: timeToDecryptMs)
|
analytics.trackError(context: nil, domain: .E2EE, name: .OlmKeysNotSentError, timeToDecryptMillis: timeToDecryptMs)
|
||||||
case .unknownDevice:
|
case .unknownDevice:
|
||||||
analytics.trackError(context: nil, domain: .E2EE, name: .ExpectedSentByInsecureDevice, timeToDecryptMillis: timeToDecryptMs)
|
analytics.trackError(context: nil, domain: .E2EE, name: .ExpectedSentByInsecureDevice, timeToDecryptMillis: timeToDecryptMs)
|
||||||
case .unsignedDevice:
|
case .unsignedDevice:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user