We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9c088e commit eaba8beCopy full SHA for eaba8be
Intersect.Client.Framework/Database/JsonDatabase.cs
@@ -23,7 +23,7 @@ public JsonDatabase()
23
private static string GetInstancePath(ClientConfiguration instance)
24
{
25
return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), ".intersect",
26
- Assembly.GetEntryAssembly().GetName().Name, $"{instance.Host}:{instance.Port}.json");
+ Assembly.GetEntryAssembly().GetName().Name, $"{instance.Host}.{instance.Port}.json");
27
}
28
29
private static bool TryOpenOrCreate(string instancePath, [NotNullWhen(true)] out JObject? instance)
0 commit comments