diff --git a/Builder/IISMainHandler/build.txt b/Builder/IISMainHandler/build.txt index 30f215b..b37f552 100644 --- a/Builder/IISMainHandler/build.txt +++ b/Builder/IISMainHandler/build.txt @@ -1 +1 @@ -1808 \ No newline at end of file +1810 \ No newline at end of file diff --git a/Common/Config.cs b/Common/Config.cs index 84f9b3e..b34229b 100644 --- a/Common/Config.cs +++ b/Common/Config.cs @@ -27,7 +27,7 @@ namespace FLocal.Common { public readonly TimeSpan ActivityThreshold; - public readonly string AdminUserName = "inga-lovinde"; + public readonly string AdminUserName; protected Config(NameValueCollection data) : base(data) { this.InitTime = DateTime.Now.ToLongTimeString(); @@ -38,6 +38,7 @@ namespace FLocal.Common { this.SaltPasswords = data["SaltPasswords"]; this.SaltUploader = data["SaltUploader"]; this.UploaderUrl = data["UploaderUrl"]; + this.AdminUserName = data["AdminUserName"]; this.ActivityThreshold = TimeSpan.FromMinutes(int.Parse(data["ActivityThreshold"])); }