diff --git a/Apewer/Web/StaticController.cs b/Apewer/Web/StaticController.cs index 40e32b3..6733cb2 100644 --- a/Apewer/Web/StaticController.cs +++ b/Apewer/Web/StaticController.cs @@ -101,14 +101,14 @@ namespace Apewer.Web if (System.IO.Directory.Exists(web)) { _root = new Class(web); - return www; + return web; } var @static = StorageUtility.CombinePath(app, "static"); if (System.IO.Directory.Exists(@static)) { _root = new Class(@static); - return www; + return @static; } _root = new Class(app);