Skip to content

Commit

Permalink
Fix regression that sync_list does not traverse shared directories (#…
Browse files Browse the repository at this point in the history
…3004)

* Fix regression that sync_list does not traverse shared directories
  • Loading branch information
abraunegg authored Nov 24, 2024
1 parent 5d45e24 commit c9591b3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/sync.d
Original file line number Diff line number Diff line change
Expand Up @@ -4196,7 +4196,9 @@ class SyncEngine {

// If this is a 'add shortcut to onedrive' link, we need to actually scan this path, so add this we need to pass this JSON
if (isItemRemote(onedriveJSONItem)) {
if (verboseLogging) {addLogEntry("Skipping shared folder shortcut - excluded by sync_list config: " ~ newItemPath, ["verbose"]);}
if (verboseLogging) {addLogEntry("Including shared folder shortcut for further analysis: " ~ newItemPath, ["verbose"]);}
// reset this flag
clientSideRuleExcludesPath = false;
}
}
} else {
Expand Down

0 comments on commit c9591b3

Please sign in to comment.