mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
Trim trailing slashes in server URL in ConnectionInfo.
This commit is contained in:
parent
ba3dc24c88
commit
b7fa3548ca
@ -10,11 +10,11 @@ namespace Remotely.Shared.Models
|
||||
{
|
||||
get
|
||||
{
|
||||
return _host;
|
||||
return _host?.Trim()?.TrimEnd('/');
|
||||
}
|
||||
set
|
||||
{
|
||||
_host = value.Trim().TrimEnd('/');
|
||||
_host = value?.Trim()?.TrimEnd('/');
|
||||
}
|
||||
}
|
||||
public string OrganizationID { get; set; }
|
||||
|
||||
Loading…
Reference in New Issue
Block a user