Skip to content

Commit eaba8be

Browse files
committed
invalid path char fix
1 parent e9c088e commit eaba8be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Intersect.Client.Framework/Database/JsonDatabase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public JsonDatabase()
2323
private static string GetInstancePath(ClientConfiguration instance)
2424
{
2525
return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), ".intersect",
26-
Assembly.GetEntryAssembly().GetName().Name, $"{instance.Host}:{instance.Port}.json");
26+
Assembly.GetEntryAssembly().GetName().Name, $"{instance.Host}.{instance.Port}.json");
2727
}
2828

2929
private static bool TryOpenOrCreate(string instancePath, [NotNullWhen(true)] out JObject? instance)

0 commit comments

Comments
 (0)