Loading app/src/main/java/foundation/e/drive/services/ObserverService.java +7 −5 Original line number Diff line number Diff line Loading @@ -758,16 +758,18 @@ public class ObserverService extends Service implements OnRemoteOperationListene if (!fileState.hasBeenSynchronizedOnce()) { continue; } final File file = new File(fileState.getLocalPath()); if (file.exists()) { Log.w(TAG, file.getAbsolutePath() + "The file still exist. There is a problem!"); } else { continue; } Log.i(TAG, "Add remove SyncRequest for file " + file.getAbsolutePath()); this.syncRequests.put(fileState.getId(), new SyncRequest(fileState, SyncRequest.Type.REMOTE_DELETE)); } } } /* end of methods related to device Scanning */ @Nullable Loading Loading
app/src/main/java/foundation/e/drive/services/ObserverService.java +7 −5 Original line number Diff line number Diff line Loading @@ -758,16 +758,18 @@ public class ObserverService extends Service implements OnRemoteOperationListene if (!fileState.hasBeenSynchronizedOnce()) { continue; } final File file = new File(fileState.getLocalPath()); if (file.exists()) { Log.w(TAG, file.getAbsolutePath() + "The file still exist. There is a problem!"); } else { continue; } Log.i(TAG, "Add remove SyncRequest for file " + file.getAbsolutePath()); this.syncRequests.put(fileState.getId(), new SyncRequest(fileState, SyncRequest.Type.REMOTE_DELETE)); } } } /* end of methods related to device Scanning */ @Nullable Loading