From 23aaf794ef0e97dd2aad935cfee49fa7c7d9d5fa Mon Sep 17 00:00:00 2001 From: Umar Bolatov Date: Sat, 25 Jan 2020 20:43:48 -0800 Subject: [PATCH] Add nullable enable directive to HttpClientRequestMaker.MakeRequestAsync --- BTCPayServer.Rating/Providers/HttpClientRequestMaker.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/BTCPayServer.Rating/Providers/HttpClientRequestMaker.cs b/BTCPayServer.Rating/Providers/HttpClientRequestMaker.cs index 17fccf327..94fd517f4 100644 --- a/BTCPayServer.Rating/Providers/HttpClientRequestMaker.cs +++ b/BTCPayServer.Rating/Providers/HttpClientRequestMaker.cs @@ -196,6 +196,7 @@ namespace BTCPayServer.Services.Rates throw new APIException(text); } api.ProcessResponse(new InternalHttpWebResponse(webHttpResponse)); + #nullable enable Action? requestStateChanged = RequestStateChanged; if (requestStateChanged != null) {