Don't warn if next loop invocation is prior to update check
This commit is contained in:
parent
c56902d8d3
commit
f2c18cbc1f
|
@ -32,6 +32,13 @@ object VersionCheckerPlugin : PluginBase(PluginDescription()
|
|||
|
||||
private fun checkWarning() {
|
||||
val now = System.currentTimeMillis()
|
||||
|
||||
if (!SP.contains(R.string.key_last_versionchecker_plugin_warning)) {
|
||||
SP.putLong(R.string.key_last_versionchecker_plugin_warning, now)
|
||||
return
|
||||
}
|
||||
|
||||
|
||||
if (isOldVersion(GRACE_PERIOD_WARNING) && shouldWarnAgain(now)) {
|
||||
// store last notification time
|
||||
SP.putLong(R.string.key_last_versionchecker_plugin_warning, now)
|
||||
|
|
Loading…
Reference in a new issue