mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
Fixed an issue with a trailing space in the subdir
This commit is contained in:
parent
42d594622d
commit
8989b6b72b
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ namespace Ombi.Settings.Settings.Models.External
|
|||
{
|
||||
if (!string.IsNullOrEmpty(SubDir))
|
||||
{
|
||||
var formattedSubDir = Ip.ReturnUriWithSubDir(Port, Ssl, SubDir);
|
||||
var formattedSubDir = Ip.ReturnUriWithSubDir(Port, Ssl, SubDir.Trim());
|
||||
return formattedSubDir.ToString();
|
||||
}
|
||||
var formatted = Ip.ReturnUri(Port, Ssl);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue