This commit is contained in:
LagradOst 2023-07-15 03:27:25 +02:00
parent 04f52f4a6d
commit c946115900
1 changed files with 1 additions and 1 deletions

View File

@ -764,7 +764,7 @@ class MainActivity : AppCompatActivity(), ColorPickerDialogListener {
// backup when we update the app, I don't trust myself to not boot lock users, might want to make this a setting?
try {
val appVer = BuildConfig.VERSION_NAME
val lastAppAutoBackup = getKey<String>("VERSION_NAME") ?: 0
val lastAppAutoBackup : String = getKey("VERSION_NAME") ?: ""
if (appVer != lastAppAutoBackup) {
setKey("VERSION_NAME", BuildConfig.VERSION_NAME)
backup()