We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0299c5e commit b37729eCopy full SHA for b37729e
1 file changed
apps/ios/Sources/Services/ExactOpaqueIdentifier.swift
@@ -29,7 +29,7 @@ struct ExactOpaqueIdentifierKey: Hashable, Sendable {
29
[0x25, hexDigits[Int(byte >> 4)], hexDigits[Int(byte & 0x0F)]]
30
}
31
32
- return String(decoding: encoded, as: UTF8.self)
+ return String(encoded.map { Character(UnicodeScalar($0)) })
33
34
35
0 commit comments