chore: Follow up connection status

This commit is contained in:
Krille 2025-02-02 16:35:30 +01:00
parent 7599ce8627
commit ad138bc7c0
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652

View file

@ -20,7 +20,7 @@ extension SyncStatusLocalization on SyncStatusUpdate {
return progress == null
? L10n.of(context).synchronizingPleaseWait
: L10n.of(context).synchronizingPleaseWaitCounter(
progress.round().toString(),
(progress * 100).round().toString(),
);
}
}