Fixed logic error

This commit is contained in:
Kenneth Skovhede
2025-05-09 17:34:20 +02:00
parent 51bcec3efc
commit ed9e6c2bb0
@@ -935,7 +935,7 @@ namespace Duplicati.Library.Main.Operation
{
var isFile = File.Exists(block.Path);
var isDir = Directory.Exists(block.Path);
if (!isFile || !isDir)
if (!isFile && !isDir)
{
Logging.Log.WriteVerboseMessage(LOGTAG, "EntryNotFound", null, "Entry not found: {0}", block.Path);
continue;