Skip to content

Commit b37729e

Browse files
committed
fix(ios): satisfy exact identifier lint
1 parent 0299c5e commit b37729e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/ios/Sources/Services/ExactOpaqueIdentifier.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ struct ExactOpaqueIdentifierKey: Hashable, Sendable {
2929
[0x25, hexDigits[Int(byte >> 4)], hexDigits[Int(byte & 0x0F)]]
3030
}
3131
}
32-
return String(decoding: encoded, as: UTF8.self)
32+
return String(encoded.map { Character(UnicodeScalar($0)) })
3333
}
3434
}
3535

0 commit comments

Comments
 (0)