diff --git a/ProjectLighthouse/Helpers/InfluxHelper.cs b/ProjectLighthouse/Helpers/InfluxHelper.cs index 334aecac..2486556f 100644 --- a/ProjectLighthouse/Helpers/InfluxHelper.cs +++ b/ProjectLighthouse/Helpers/InfluxHelper.cs @@ -14,8 +14,8 @@ namespace LBPUnion.ProjectLighthouse.Helpers; public static class InfluxHelper { - public static readonly InfluxDBClient Client = InfluxDBClientFactory.Create - (url: ServerConfiguration.Instance.InfluxDB.Url, token: ServerConfiguration.Instance.InfluxDB.Token); + public static readonly InfluxDBClient Client = new(url: ServerConfiguration.Instance.InfluxDB.Url, + token: ServerConfiguration.Instance.InfluxDB.Token); private static readonly List gameVersions = new() { diff --git a/ProjectLighthouse/ProjectLighthouse.csproj b/ProjectLighthouse/ProjectLighthouse.csproj index a950fbba..259c0fad 100644 --- a/ProjectLighthouse/ProjectLighthouse.csproj +++ b/ProjectLighthouse/ProjectLighthouse.csproj @@ -13,7 +13,7 @@ - +