forked from organicmaps/organicmaps
[android] Added check core and platform before changes uploading
This commit is contained in:
parent
67bd4090a2
commit
4748d158f4
1 changed files with 6 additions and 0 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue