You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sorry have no possibility to make a pull right now.
Location: XbrlSchema.cs line 184
Problem code: if(webResponse.StatusCode == HttpStatusCode.NotFound)
You have to check webResponse for null or it will crash in the described case.
FInal fix should be: if(webResponse == null || webResponse.StatusCode == HttpStatusCode.NotFound)
The text was updated successfully, but these errors were encountered:
Sorry have no possibility to make a pull right now.
Location: XbrlSchema.cs line 184
Problem code:
if(webResponse.StatusCode == HttpStatusCode.NotFound)
You have to check webResponse for null or it will crash in the described case.
FInal fix should be:
if(webResponse == null || webResponse.StatusCode == HttpStatusCode.NotFound)
The text was updated successfully, but these errors were encountered: