Skip to content

Commit

Permalink
Merge pull request #11 from klaaspolinder/master
Browse files Browse the repository at this point in the history
Fix for issue #7 No UserId in Sitelog results
  • Loading branch information
valadas authored Nov 5, 2018
2 parents 6fbbc05 + df2348d commit 6002149
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/HttpModules/SiteLogModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ public int SiteLogHistory

public void Init(HttpApplication context)
{
context.BeginRequest += OnBeginRequest;
context.AuthorizeRequest += OnAuthorizeRequest;
}

public void Dispose()
{
}

private void OnBeginRequest(object sender, EventArgs e)
private void OnAuthorizeRequest(object sender, EventArgs e)
{
var application = sender as HttpApplication;
var context = application.Context;
Expand Down

0 comments on commit 6002149

Please sign in to comment.