Fix casing in copies

This commit is contained in:
vishnukvmd 2022-11-14 14:20:41 +05:30
parent fd581d553f
commit 3332b030ef
2 changed files with 4 additions and 4 deletions

View file

@ -243,8 +243,8 @@ class SyncService {
if ((now - lastNotificationShownTime) > microSecondsInDay) {
await _prefs.setInt(kLastStorageLimitExceededNotificationPushTime, now);
NotificationService.instance.showNotification(
"storage limit exceeded",
"sorry, we had to pause your backups",
"Storage limit exceeded",
"Sorry, we had to pause your backups",
);
}
}

View file

@ -71,8 +71,8 @@ class UpdateService {
hasBeen3DaysSinceLastNotification &&
_latestVersion.shouldNotify) {
NotificationService.instance.showNotification(
"update available",
"click to install our best version yet",
"Update available",
"Click to install our best version yet",
);
await _prefs.setInt(kUpdateAvailableShownTimeKey, now);
} else {