Prevent crash

pull/207/head
M66B 2 years ago
parent 4f60205d66
commit a0265c594b

@ -2327,7 +2327,8 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
@Override
public void delegate() {
try {
cowner.value.destroy();
if (cowner.value != null)
cowner.value.destroy();
} catch (Throwable ex) {
Log.e(ex);
} finally {

Loading…
Cancel
Save