fix missing slash

This commit is contained in:
James 2022-03-27 15:33:05 +01:00
parent 366bde4897
commit de4a048ab2
1 changed files with 1 additions and 1 deletions

View File

@ -7,5 +7,5 @@ function New-MatrixUrl {
[string]$ApiPath [string]$ApiPath
) )
return $ServerUrl.Trim("/") + $ApiPath return $ServerUrl.Trim("/") + "/" + $ApiPath
} }