Merge branch 'develop' into feature/fga/live_location_sharing_setup

This commit is contained in:
ganfra 2026-03-24 10:17:24 +01:00
commit 9a984e1423
632 changed files with 4530 additions and 3107 deletions

View file

@ -20,5 +20,6 @@ sealed class QrLoginException : Exception() {
data object OtherDeviceNotSignedIn : QrLoginException()
data object CheckCodeAlreadySent : QrLoginException()
data object CheckCodeCannotBeSent : QrLoginException()
data object UnsupportedQrCodeType : QrLoginException()
data object Unknown : QrLoginException()
}

View file

@ -23,6 +23,11 @@ sealed class ErrorType(message: String) : Exception(message) {
*/
class UnsupportedProtocol(message: String) : ErrorType(message)
/**
* The QR code type is not supported by the client.
*/
class UnsupportedQrCodeType(message: String) : ErrorType(message)
/**
* Secrets backup not set up properly.
*/