Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8a49e12b authored by Guillaume Jacquart's avatar Guillaume Jacquart
Browse files

fix:9019: display account name in password error notification.

parent c3c9ae95
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -850,7 +850,7 @@ abstract class SyncManager<ResourceType: LocalResource<*>, out CollectionType: L
                syncResult.stats.numIoExceptions++
            }
            is UnauthorizedException -> {
                title = context.getString(R.string.sync_error_authentification_failed_title, accountSettings.credentials().userName)
                title = context.getString(R.string.sync_error_authentification_failed_title, accountSettings.account.name)
                tag = UNAUTHORIZED_NOTIFICATION_TAG
                message = context.getString(R.string.sync_error_authentication_failed)
                syncResult.stats.numAuthExceptions++