This commit is contained in:
pointfeev 2022-03-24 23:20:06 -04:00
parent 20666fd7a5
commit 7f569e8914

View file

@ -28,7 +28,6 @@ internal static class EpicLibrary
internal static async Task<List<Manifest>> GetGames() => await Task.Run(() => internal static async Task<List<Manifest>> GetGames() => await Task.Run(() =>
{ {
List<Manifest> games = new(); List<Manifest> games = new();
if (!Directory.Exists(EpicManifestsPath)) return games;
string manifests = EpicManifestsPath; string manifests = EpicManifestsPath;
if (!Directory.Exists(manifests)) return games; if (!Directory.Exists(manifests)) return games;
string[] files = Directory.GetFiles(manifests, "*.item"); string[] files = Directory.GetFiles(manifests, "*.item");