From b4024e1595faa769de541dc87502a54c14c9f0dc Mon Sep 17 00:00:00 2001 From: Kamal Bramwell <kamal@elixxir.io> Date: Fri, 9 Dec 2022 11:14:14 -0500 Subject: [PATCH] Fixed bug preventing restore of account that has phone fact --- .../io/xxlabs/messenger/backup/data/restore/BackupReport.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/io/xxlabs/messenger/backup/data/restore/BackupReport.kt b/app/src/main/java/io/xxlabs/messenger/backup/data/restore/BackupReport.kt index e7ac310e..4a64d610 100644 --- a/app/src/main/java/io/xxlabs/messenger/backup/data/restore/BackupReport.kt +++ b/app/src/main/java/io/xxlabs/messenger/backup/data/restore/BackupReport.kt @@ -33,7 +33,7 @@ data class BackupReport( val userPhone: String? get() = userData?.userPhone val phoneStringified: String? get() = userPhone?.run { - if (isNotEmpty()) "P$this" + if (isNotEmpty()) "E$this" else this } -- GitLab