Handle stupid zzat errors
This commit is contained in:
@@ -58,5 +58,9 @@ object UpdateChecker {
|
|||||||
} catch (e: InstallException) {
|
} catch (e: InstallException) {
|
||||||
app.logEvent("InstallErrorCode") { param("errorCode", e.errorCode.toLong()) }
|
app.logEvent("InstallErrorCode") { param("errorCode", e.errorCode.toLong()) }
|
||||||
throw AppUpdate.IgnoredException(e)
|
throw AppUpdate.IgnoredException(e)
|
||||||
|
} catch (e: RuntimeException) {
|
||||||
|
if (e.message != "Failed to bind to the service.") throw e
|
||||||
|
app.logEvent("UpdateBindFailure")
|
||||||
|
throw AppUpdate.IgnoredException(e)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user