Commit 28e03c7c authored by Mygod's avatar Mygod

Ignore DeadObjectException on broadcast

parent 68e28156
...@@ -117,6 +117,7 @@ object BaseService { ...@@ -117,6 +117,7 @@ object BaseService {
repeat(callbacks.beginBroadcast()) { repeat(callbacks.beginBroadcast()) {
try { try {
work(callbacks.getBroadcastItem(it)) work(callbacks.getBroadcastItem(it))
} catch (_: DeadObjectException) {
} catch (e: Exception) { } catch (e: Exception) {
printLog(e) printLog(e)
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment