diff --git a/UWPHook/SteamGridDb/SteamGridDbApi.cs b/UWPHook/SteamGridDb/SteamGridDbApi.cs index b340a9f..e57a3eb 100644 --- a/UWPHook/SteamGridDb/SteamGridDbApi.cs +++ b/UWPHook/SteamGridDb/SteamGridDbApi.cs @@ -33,7 +33,8 @@ namespace UWPHook.SteamGridDb /// Array of games corresponding to the provided name public async Task SearchGame(string gameName) { - string path = $"search/autocomplete/{gameName}"; + // remove any forward slashes in the gameName to allow Games like FINAL FANTASY X/X-2 HD Remaster to be found + string path = $"search/autocomplete/{gameName.Replace('/', ' ')}"; GameResponse[] games = null; HttpResponseMessage response = await httpClient.GetAsync(path);