show backup status when only when status message is previously set

Signed-off-by: sowjanyakch <sowjanya.kch@gmail.com>
This commit is contained in:
sowjanyakch 2024-11-25 11:44:57 +01:00
parent 43a49494ae
commit 8bf7fd8553
No known key found for this signature in database
GPG key ID: F7AA2A8B65B50220

View file

@ -177,6 +177,7 @@ class SetStatusDialogFragment :
override fun onNext(statusOverall: StatusOverall) {
if (statusOverall.ocs?.meta?.statusCode == HTTP_STATUS_CODE_OK) {
backupStatus = statusOverall.ocs?.data!!
if(backupStatus.message!= null){
isBackupStatusAvailable = true
val backupPredefinedStatus = PredefinedStatus(
backupStatus.userId!!,
@ -190,6 +191,7 @@ class SetStatusDialogFragment :
adapter.notifyDataSetChanged()
}
}
}
override fun onError(e: Throwable) {
if (e is HttpException && e.code() == HTTP_STATUS_CODE_NOT_FOUND) {