\r
Log.d(TAG, "syncing owncloud account " + account.name);\r
\r
- sendStickyBroadcast(true, null, null); // message to signal the start to the UI\r
+ sendStickyBroadcast(true, null); // message to signal the start to the UI\r
\r
updateOCVersion();\r
\r
}\r
\r
\r
- private void sendStickyBroadcast(boolean inProgress, String dirRemotePath, RemoteOperationResult result) {\r
+ private void sendStickyBroadcast(boolean inProgress, String dirRemotePath/*, RemoteOperationResult result*/) {\r
Intent i = new Intent(FileSyncService.SYNC_MESSAGE);\r
i.putExtra(FileSyncService.IN_PROGRESS, inProgress);\r
i.putExtra(FileSyncService.ACCOUNT_NAME, getAccount().name);\r
if (dirRemotePath != null) {\r
i.putExtra(FileSyncService.SYNC_FOLDER_REMOTE_PATH, dirRemotePath);\r
}\r
- if (result != null) {\r
+ /*if (result != null) {\r
i.putExtra(FileSyncService.SYNC_RESULT, result);\r
- }\r
+ }*/\r
getContext().sendStickyBroadcast(i);\r
}\r
\r