Fix loadLastRun
This commit is contained in:
parent
e89e5102f7
commit
636bdb0e94
1 changed files with 27 additions and 24 deletions
|
@ -319,6 +319,7 @@ class AutotunePlugin @Inject constructor(
|
||||||
fun loadLastRun() {
|
fun loadLastRun() {
|
||||||
result = ""
|
result = ""
|
||||||
lastRunSuccess = false
|
lastRunSuccess = false
|
||||||
|
try {
|
||||||
val json = JSONObject(sp.getString(R.string.key_autotune_last_run, ""))
|
val json = JSONObject(sp.getString(R.string.key_autotune_last_run, ""))
|
||||||
lastNbDays = JsonHelper.safeGetString(json, "lastNbDays", "")
|
lastNbDays = JsonHelper.safeGetString(json, "lastNbDays", "")
|
||||||
lastRun = JsonHelper.safeGetLong(json, "lastRun")
|
lastRun = JsonHelper.safeGetLong(json, "lastRun")
|
||||||
|
@ -344,6 +345,8 @@ class AutotunePlugin @Inject constructor(
|
||||||
result = JsonHelper.safeGetString(json, "result", "")
|
result = JsonHelper.safeGetString(json, "result", "")
|
||||||
updateButtonVisibility = JsonHelper.safeGetInt(json, "updateButtonVisibility")
|
updateButtonVisibility = JsonHelper.safeGetInt(json, "updateButtonVisibility")
|
||||||
lastRunSuccess = true
|
lastRunSuccess = true
|
||||||
|
} catch (e: Exception) {
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun log(message: String) {
|
private fun log(message: String) {
|
||||||
|
|
Loading…
Reference in a new issue