Skip to content

Commit a770aeb

Browse files
authored
Merge pull request #31 from Tawmy/throw-exceptions
Do not silently swallow exceptions while parsing
2 parents 0e8e2a4 + 98fe3d6 commit a770aeb

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

NetStone/LodestoneClient.cs

+1-10
Original file line numberDiff line numberDiff line change
@@ -254,16 +254,7 @@ await GetParsed($"/lodestone/freecompany/{query.BuildQueryString()}&page={page}"
254254
throw new ArgumentOutOfRangeException(nameof(agent), agent, null);
255255
}
256256

257-
HttpResponseMessage? response;
258-
try
259-
{
260-
response = await this.client.SendAsync(request);
261-
}
262-
catch (Exception ex) when (ex is HttpRequestException or InvalidOperationException)
263-
{
264-
return null;
265-
}
266-
257+
var response = await this.client.SendAsync(request);
267258

268259
if (response.StatusCode == HttpStatusCode.NotFound)
269260
return null;

0 commit comments

Comments
 (0)