Kavita naming convention

This commit is contained in:
glax 2023-06-03 22:34:02 +02:00
parent d6a62dc315
commit 5b41f687d0

View File

@ -125,6 +125,10 @@ public abstract class Connector
logger?.WriteLine(this.GetType().ToString(), $"Moving old file {oldFilePath2} -> {newFilePath}");
File.Move(oldFilePath2, newFilePath);
}
else
{
logger?.WriteLine(this.GetType().ToString(), $"No old files found:\n{oldFilePath}\n{oldFilePath2}");
}
return File.Exists(newFilePath);
}