1.1731 release

This commit is contained in:
M66B
2021-09-21 08:07:04 +02:00
parent 321f3c6ff4
commit 64460872aa
5 changed files with 87 additions and 10 deletions

View File

@@ -2173,16 +2173,17 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
// Stop watching operations
Log.i(account.name + " stop watching operations");
final TwoStateOwner _owner = cowner.value;
getMainHandler().post(new Runnable() {
@Override
public void run() {
try {
_owner.destroy();
} catch (Throwable ex) {
Log.e(ex);
if (_owner != null)
getMainHandler().post(new Runnable() {
@Override
public void run() {
try {
_owner.destroy();
} catch (Throwable ex) {
Log.e(ex);
}
}
}
});
});
// Stop executing operations
Log.i(account.name + " stop executing operations");