[android] Added check core and platform before changes uploading

This commit is contained in:
Arsentiy Milchakov 2018-04-17 16:42:57 +03:00 committed by Aleksandr Zatsepin
parent 67bd4090a2
commit 4748d158f4

View file

@ -22,6 +22,9 @@ public class WorkerService extends IntentService
private static final SharedPreferences PREFS = MwmApplication.prefs();
private final boolean mArePlatformAndCoreInitialized =
MwmApplication.get().arePlatformAndCoreInitialized();
/**
* Starts this service to upload map edits to osm servers.
*/
@ -62,6 +65,9 @@ public class WorkerService extends IntentService
if (TextUtils.isEmpty(action))
return;
if (!mArePlatformAndCoreInitialized)
return;
switch (action)
{
case ACTION_UPLOAD_OSM_CHANGES: