Skip to content

Commit

Permalink
Bump quota to 3 GiB per app
Browse files Browse the repository at this point in the history
  • Loading branch information
grote committed Jan 21, 2025
1 parent aa87eaa commit d3c1186
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ class SettingsManager(private val context: Context) {
prefs.edit().putStringSet(PREF_KEY_BACKUP_APP_BLACKLIST, blacklistedApps).apply()
}

val quota: Long = 1024 * 1024 * 1024 // 1 GiB for now
val quota: Long = 3L * 1024 * 1024 * 1024 // 3 GiB for now

/**
* This assumes that if there's no storage plugin set, it is the first start.
Expand Down

0 comments on commit d3c1186

Please sign in to comment.