Remove redundant question marks.

pull/1672/head
Halil İbrahim Kalkan 6 years ago
parent 999b2ba74c
commit 4b5e9a1297

@ -64,14 +64,14 @@ namespace Volo.Abp.AspNetCore.Auditing
protected virtual string GetBrowserInfo(HttpContext httpContext)
{
return httpContext?.Request?.Headers?["User-Agent"];
return httpContext.Request?.Headers?["User-Agent"];
}
protected virtual string GetClientIpAddress(HttpContext httpContext)
{
try
{
return httpContext?.Connection?.RemoteIpAddress?.ToString();
return httpContext.Connection?.RemoteIpAddress?.ToString();
}
catch (Exception ex)
{

Loading…
Cancel
Save