From 3d9ab5e32d4e1751d7935baa2f1a1c04ea59f016 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 9 May 2017 18:43:33 -0400 Subject: [PATCH] Fix a fucking supermosquito in Global.asax --- Project-Unite/Global.asax.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Project-Unite/Global.asax.cs b/Project-Unite/Global.asax.cs index 4864165..41208ad 100644 --- a/Project-Unite/Global.asax.cs +++ b/Project-Unite/Global.asax.cs @@ -46,8 +46,7 @@ protected void Application_BeginRequest(object sender, EventArgs e) if(split.Length > 1) { - if (split.Length == 2) - controllername = split[1]; + controllername = split[1]; if (split.Length == 3) actionname = split[2]; }