Add a Link New Device screen (behind a feature flag). (#4811)

This commit is contained in:
Doug
2025-12-11 11:45:23 +00:00
committed by GitHub
parent c134b94d68
commit fe9aa48aab
46 changed files with 635 additions and 27 deletions

View File

@@ -313,6 +313,17 @@ class ClientProxy: ClientProxyProtocol {
}
}
var isLoginWithQRCodeSupported: Bool {
get async {
do {
return try await client.isLoginWithQrCodeSupported()
} catch {
MXLog.error("Failed checking QR code support with error: \(error)")
return false
}
}
}
var maxMediaUploadSize: Result<UInt, ClientProxyError> {
get async {
do {