mirror of
https://github.com/nextcloud/android.git
synced 2024-11-26 23:28:42 +03:00
Fix a typo
This commit is contained in:
parent
52d3671395
commit
b78051cf73
1 changed files with 1 additions and 1 deletions
|
@ -116,7 +116,7 @@ public class SyncedFolderObserverService extends Service {
|
|||
Log_OC.d(TAG, "start");
|
||||
if (pairArrayList.size() == 0) {
|
||||
for (SyncedFolder syncedFolder : mProvider.getSyncedFolders()) {
|
||||
if (syncedFolder.isEnabled() && !syncedFolderMap.containsKey(syncedFolder.getLocalPath())) {
|
||||
if (syncedFolder.isEnabled() && !syncedFolderMap.containsKey(syncedFolder)) {
|
||||
Log_OC.d(TAG, "start observer: " + syncedFolder.getLocalPath());
|
||||
FileAlterationMagicObserver observer = new FileAlterationMagicObserver(new File(
|
||||
syncedFolder.getLocalPath()), fileFilter);
|
||||
|
|
Loading…
Reference in a new issue