From fc3c63f9b5589eb9eb08941604a55d5cc01e3fbd Mon Sep 17 00:00:00 2001 From: Chris R Date: Tue, 16 Jun 2015 12:00:30 -0700 Subject: [PATCH] React to the removal of ErrorPageOptions.ShowAll. --- samples/IdentitySample.Mvc/Startup.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/IdentitySample.Mvc/Startup.cs b/samples/IdentitySample.Mvc/Startup.cs index 86cd73afa9..994a585594 100644 --- a/samples/IdentitySample.Mvc/Startup.cs +++ b/samples/IdentitySample.Mvc/Startup.cs @@ -79,7 +79,7 @@ namespace IdentitySamples loggerFactory.AddNLog(new global::NLog.LogFactory(config)); #endif - app.UseErrorPage(ErrorPageOptions.ShowAll) + app.UseErrorPage() .UseStaticFiles() .UseIdentity() .UseFacebookAuthentication() @@ -98,4 +98,4 @@ namespace IdentitySamples } } -} \ No newline at end of file +}