Continue syncing till the end even if there's an error in one sync item

This commit is contained in:
Synced Synapse 2015-01-17 11:47:21 +00:00
parent 0e043ab0ac
commit 19f82a1827
1 changed files with 3 additions and 1 deletions

View File

@ -275,7 +275,9 @@ public class LibrarySyncService extends Service {
.post(new MediaSyncEvent(currentSyncItem.getSyncType(),
currentSyncItem.getSyncExtras(),
MediaSyncEvent.STATUS_FAIL, errorCode, description));
syncService.stopSelf(serviceStartId);
// Keep syncing till the end
nextSync();
//syncService.stopSelf(serviceStartId);
}
}