From 5946a121e2ba4bd40ac0f40e250b3b13e7a773a1 Mon Sep 17 00:00:00 2001 From: inga-lovinde <52715130+inga-lovinde@users.noreply.github.com> Date: Sun, 1 Jan 2012 19:36:52 +0000 Subject: [PATCH] Fixed a critical mistype --- Builder/IISMainHandler/build.txt | 2 +- FLocal.IISHandler/MainHandler.cs | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Builder/IISMainHandler/build.txt b/Builder/IISMainHandler/build.txt index 49cf7c7..93715bc 100644 --- a/Builder/IISMainHandler/build.txt +++ b/Builder/IISMainHandler/build.txt @@ -1 +1 @@ -1931 \ No newline at end of file +1935 \ No newline at end of file diff --git a/FLocal.IISHandler/MainHandler.cs b/FLocal.IISHandler/MainHandler.cs index fa69dc1..3b4989a 100644 --- a/FLocal.IISHandler/MainHandler.cs +++ b/FLocal.IISHandler/MainHandler.cs @@ -15,6 +15,8 @@ namespace FLocal.IISHandler { private void doProcessRequest(HttpContext httpcontext) { + Initializer.instance.Initialize(); + Uri current = httpcontext.Request.Url; if(!current.Host.EndsWith(Config.instance.BaseHost)) { throw new Web.Core.FLocalException("Wrong host: " + current.Host + " (expected *" + Config.instance.BaseHost + ")");