Skip to content

Commit c7ddd0e

Browse files
committed
Update the SDK.
1 parent f6d0b2c commit c7ddd0e

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

ElementX.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9494,7 +9494,7 @@
94949494
repositoryURL = "https://github.com/element-hq/matrix-rust-components-swift";
94959495
requirement = {
94969496
kind = exactVersion;
9497-
version = 25.11.24;
9497+
version = 25.11.27;
94989498
};
94999499
};
95009500
701C7BEF8F70F7A83E852DCC /* XCRemoteSwiftPackageReference "GZIP" */ = {

ElementX.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ElementX/Sources/Other/Logging/MXLog.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ enum MXLog {
1919
static func configure(currentTarget: String) {
2020
self.currentTarget = currentTarget
2121

22-
rootSpan = Span(file: #file, line: #line, level: .info, target: self.currentTarget, name: "root")
22+
rootSpan = Span(file: #file, line: #line, level: .info, target: self.currentTarget, name: "root", bridgeTraceId: nil)
2323
rootSpan.enter()
2424
}
2525

@@ -122,7 +122,7 @@ enum MXLog {
122122
rootSpan.enter()
123123
}
124124

125-
return Span(file: file, line: UInt32(line), level: level.rustLogLevel, target: currentTarget, name: name)
125+
return Span(file: file, line: UInt32(line), level: level.rustLogLevel, target: currentTarget, name: name, bridgeTraceId: nil)
126126
}
127127

128128
// periphery:ignore:parameters function,column

ElementX/Sources/Services/Authentication/AuthenticationService.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ private extension HumanQrLoginError {
248248
.qrCodeError(.deviceNotSupported)
249249
case .OtherDeviceNotSignedIn:
250250
.qrCodeError(.deviceNotSignedIn)
251-
case .Unknown, .OidcMetadataInvalid, .CheckCodeAlreadySent, .CheckCodeCannotBeSent:
251+
case .Unknown, .NotFound, .OidcMetadataInvalid, .CheckCodeAlreadySent, .CheckCodeCannotBeSent:
252252
.qrCodeError(.unknown)
253253
}
254254
}

project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ packages:
7171
# Element/Matrix dependencies
7272
MatrixRustSDK:
7373
url: https://github.com/element-hq/matrix-rust-components-swift
74-
exactVersion: 25.11.24
74+
exactVersion: 25.11.27
7575
# path: ../matrix-rust-sdk
7676
Compound:
7777
path: compound-ios

0 commit comments

Comments
 (0)