Update sync.d

* Add missing log output for new file adds
This commit is contained in:
abraunegg 2024-01-09 06:46:59 +11:00
parent e32d32ed03
commit 06026c2c5b

View file

@ -4194,6 +4194,8 @@ class SyncEngine {
// Was the file found in the database?
if (!fileFoundInDB) {
// This is a new file as it is not in the database
// Log that the file has been added locally
addLogEntry("[M] New local file added: " ~ localFilePath, ["verbose"]);
// Scan the parent path for any new data, not just this this item
scanLocalFilesystemPathForNewData(dirName(localFilePath));
} else {