Merge pull request #642 from ente-io/fix_copy

This commit is contained in:
Vishnu Mohandas 2022-11-14 17:23:13 +05:30 committed by GitHub
commit 63a6f457df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

@ -87,8 +87,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 {