From b95ab45e62e47d7179723444c470e6013c79db48 Mon Sep 17 00:00:00 2001 From: Lucca Faria Ferri Date: Tue, 31 Jan 2023 07:34:32 -0800 Subject: [PATCH] Update. --- src/DiIiS-NA/REST/Config.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DiIiS-NA/REST/Config.cs b/src/DiIiS-NA/REST/Config.cs index 9dc7051..c51e564 100644 --- a/src/DiIiS-NA/REST/Config.cs +++ b/src/DiIiS-NA/REST/Config.cs @@ -10,7 +10,7 @@ namespace DiIiS_NA.REST public string IP { get { return this.GetString("IP", "127.0.0.1"); } set { this.Set("IP", value); } } public bool Public { get { return this.GetBoolean("Public", false); } set { this.Set("Public", value); } } public string PublicIP { get { return this.GetString("PublicIP", "0.0.0.0"); } set { this.Set("PublicIP", value); } } - public int PORT { get { return this.GetInt("PORT", 8081); } set { this.Set("PORT", value); } } //8081 + public int Port { get { return this.GetInt("PORT", 8081); } set { this.Set("PORT", value); } } //8081 private static readonly Config _instance = new Config(); public static Config Instance { get { return _instance; } } private Config() : base("REST") { }