Update Jellyfin.Plugin.Anime/Providers/KitsuIO/Metadata/KitsuIoSeriesProvider.cs

Co-authored-by: Odd Stråbø <oddstr13@openshell.no>
This commit is contained in:
Cody Robibero 2020-07-19 16:07:32 -06:00 committed by GitHub
parent e50cbb2580
commit f3412a4323
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -106,11 +106,11 @@ namespace Jellyfin.Plugin.Anime.Providers.KitsuIO.Metadata
private void StoreImageUrl(string series, string url, string type)
{
var path = Path.Combine(_paths.CachePath, "kitsuio", type, series + ".txt");
var path = Path.Combine(_paths.CachePath, "kitsu", type, series + ".txt");
var directory = Path.GetDirectoryName(path);
Directory.CreateDirectory(directory);
File.WriteAllText(path, url);
}
}
}
}