Skip to content

Commit

Permalink
Fix naming issue with colon in addr
Browse files Browse the repository at this point in the history
  • Loading branch information
scheibling authored Mar 20, 2024
1 parent 27ecaff commit a0e2f66
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public Remotes.RemoteParams GetRemoteParams()

public string GetName()
{
return Strings.Join(new string[] { ConnectionType, Address, Username }, "-").Replace(".", "_").ToLower();
return Strings.Join(new string[] { ConnectionType, Address, Username }, "-").Replace(".", "_").Replace(":", "").ToLower();

}

Expand Down

0 comments on commit a0e2f66

Please sign in to comment.