From 12088be517ea810af28bd77cc53f3ad324d089fe Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Mon, 5 Feb 2018 12:14:35 -0600 Subject: [PATCH] explicitly set HttpStatusCode to null for HttpRequestException --- src/FilterLists.Services/SnapshotService/SnapshotDe.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FilterLists.Services/SnapshotService/SnapshotDe.cs b/src/FilterLists.Services/SnapshotService/SnapshotDe.cs index 66493a3a2..366053f40 100644 --- a/src/FilterLists.Services/SnapshotService/SnapshotDe.cs +++ b/src/FilterLists.Services/SnapshotService/SnapshotDe.cs @@ -50,7 +50,7 @@ private async Task TryGetContent() } catch (HttpRequestException) { - //TODO: log error + snapshot.HttpStatusCode = null; return null; } }