mirror of
https://github.com/nextcloud/android.git
synced 2024-11-24 22:25:44 +03:00
Merge pull request #13257 from TibboddiT/master
Fix auto upload not working when "Also upload existing files" not checked
This commit is contained in:
commit
6c597c893d
1 changed files with 1 additions and 1 deletions
|
@ -148,7 +148,7 @@ class FilesSyncWork(
|
|||
|
||||
private fun setSyncedFolder(syncedFolderID: Long): Boolean {
|
||||
val syncedFolderTmp = syncedFolderProvider.getSyncedFolderByID(syncedFolderID)
|
||||
if (syncedFolderTmp == null || !syncedFolderTmp.isEnabled || !syncedFolderTmp.isExisting) {
|
||||
if (syncedFolderTmp == null || !syncedFolderTmp.isEnabled) {
|
||||
return false
|
||||
}
|
||||
syncedFolder = syncedFolderTmp
|
||||
|
|
Loading…
Reference in a new issue