Skip to content

Commit

Permalink
Don't just swallow the web exception.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mailaender committed Sep 18, 2021
1 parent b4256df commit 6718e81
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion OpenRA.Mods.Common/Widgets/Logic/ServerListLogic.cs
Expand Up @@ -367,9 +367,10 @@ public void RefreshServerList()
}
}
}
catch
catch (Exception e)
{
searchStatus = SearchStatus.Failed;
Log.Write("debug", $"Failed to query server list with exception: {e}");
}
var lanGames = new List<GameServer>();
Expand Down

0 comments on commit 6718e81

Please sign in to comment.