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
I just got a weird null reference with the following call stack:
System.NullReferenceException: Object reference not set to an instance of an object.
at Microsoft.AspNetCore.Http.Internal.DefaultHttpRequest.get_Query()
...
The calling code looks like this
if (_httpAccessor.HttpContext?.Request.Query.ContainsKey(SharedConstants.HEADER_SHOP_ID) == true)
{
...
}