Fix missing QRCodeLoginErrors after cherry picking from draft PR.

This commit is contained in:
Stefan Ceriu
2026-03-02 16:24:02 +02:00
committed by Stefan Ceriu
parent 7e1b81352d
commit 2ed469dab4

View File

@@ -195,13 +195,13 @@ private extension QRCodeLoginError {
.connectionInsecure
case .UnsupportedProtocol:
.linkingNotSupported
case .Expired, .NotFound: // The most likely cause of a .NotFound is that the rendezvous session expired on the server side
case .Expired, .NotFound, .DeviceNotFound:
.expired
case .Cancelled:
.cancelled
case .OtherDeviceAlreadySignedIn:
.deviceAlreadySignedIn
case .Unknown, .MissingSecretsBackup, .DeviceIdAlreadyInUse, .UnableToCreateDevice:
case .Unknown, .MissingSecretsBackup, .DeviceIdAlreadyInUse:
.unknown
}
}