React to the removal of ErrorPageOptions.ShowAll.

This commit is contained in:
Chris R 2015-06-16 12:00:30 -07:00
parent 100cb7a049
commit fc3c63f9b5
1 changed files with 2 additions and 2 deletions

View File

@ -79,7 +79,7 @@ namespace IdentitySamples
loggerFactory.AddNLog(new global::NLog.LogFactory(config)); loggerFactory.AddNLog(new global::NLog.LogFactory(config));
#endif #endif
app.UseErrorPage(ErrorPageOptions.ShowAll) app.UseErrorPage()
.UseStaticFiles() .UseStaticFiles()
.UseIdentity() .UseIdentity()
.UseFacebookAuthentication() .UseFacebookAuthentication()
@ -98,4 +98,4 @@ namespace IdentitySamples
} }
} }
} }