From 457d52c3b9ac11971ff6311874d5404488d893f5 Mon Sep 17 00:00:00 2001 From: mausch Date: Sun, 5 Jul 2015 20:31:08 +0100 Subject: [PATCH] Make sure that base path is an entire segment of the URL --- SampleApp.Owin/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SampleApp.Owin/Program.cs b/SampleApp.Owin/Program.cs index b64ca8d..064e3fa 100644 --- a/SampleApp.Owin/Program.cs +++ b/SampleApp.Owin/Program.cs @@ -39,7 +39,7 @@ static void Start(IAppBuilder app) { // A dummy calendar //scheduler.AddCalendar("myCalendar", new DummyCalendar { Description = "dummy calendar" }, false, false); - app.Use(QuartzNetWebConsole.Setup.Owin("/quartz", () => scheduler)); + app.Use(QuartzNetWebConsole.Setup.Owin("/quartz/", () => scheduler)); } private static void Main(string[] args) {