Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 62a4316b authored by Vincent Bourgmayer's avatar Vincent Bourgmayer
Browse files

Update version number to 1.2.2

remove useless todo in ObserverService
Improve one log
parent 033eaceb
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@ plugins {

def versionMajor = 1
def versionMinor = 2
def versionPatch = 1
def versionPatch = 2



+1 −1
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@ public class ListFileRemoteOperation extends RemoteOperation<ArrayList<RemoteFil
                final int syncedFolderId = (int) DbHelper.insertSyncedFolder(syncedFolder, context);
                if (syncedFolderId <= 0) {
                    mSyncedFolderIterator.remove();
                    Log.w(TAG, "syncedFolder " + syncedFolder.getRemoteFolder() + " doesn't have a valid ID");
                    Log.w(TAG, "syncedFolder " + syncedFolder.getRemoteFolder() + " doesn't have a valid ID after insertion: " + syncedFolderId);
                    continue;
                }
                syncedFolder.setId(syncedFolderId);
+1 −1
Original line number Diff line number Diff line
@@ -146,7 +146,7 @@ public class ObserverService extends Service implements OnRemoteOperationListene
        }

        // Check this service isn't already working
        if (isWorking){ //TODO check if really used...
        if (isWorking){
            Log.w(TAG, "ObserverService is already working");
            return false;
        }