mirror of
https://github.com/C9Glax/tranga.git
synced 2025-09-18 07:39:13 +02:00
fix path
This commit is contained in:
@@ -18,7 +18,7 @@ public class CleanupMangaconnectorIdsWithoutConnector : BaseWorkerWithContext<Ma
|
||||
.Where(mcId => connectorNames.Any(name => name == mcId.MangaConnectorName)).ToListAsync() is
|
||||
{ Count: > 0 } list)
|
||||
{
|
||||
string filePath = Path.Join(TrangaSettings.settingsFilePath, $"deletedManga-{DateTime.UtcNow.Ticks}.txt");
|
||||
string filePath = Path.Join(TrangaSettings.workingDirectory, $"deletedManga-{DateTime.UtcNow.Ticks}.txt");
|
||||
Log.Debug($"Writing deleted manga to {filePath}.");
|
||||
await File.WriteAllLinesAsync(filePath, list.Select(id =>
|
||||
{
|
||||
|
Reference in New Issue
Block a user