Skip to content

Commit

Permalink
Hackfix for iMovie infinite backing up
Browse files Browse the repository at this point in the history
Need to make this configurable more easily somewhere.
  • Loading branch information
Deadpikle committed Nov 14, 2024
1 parent f6eca79 commit c956fb4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions EasyBackupAvalonia/Helpers/BackupPerformer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,12 @@ private bool ShouldAllowPath(List<string> excludedPaths, string path)
return false;
}
}
if (path.Contains(".imovielibrary/.fcpcache"))
{
// TODO: fix infinite syncing with iMovie; need to add a better fix for this
// somewhere and/or disallow alias as option for folder
return false;
}
return true;
}

Expand Down

0 comments on commit c956fb4

Please sign in to comment.