From de4a048ab2beeb4b36422d9cb2420a3eb398f175 Mon Sep 17 00:00:00 2001 From: Thumbscrew Date: Sun, 27 Mar 2022 15:33:05 +0100 Subject: [PATCH] fix missing slash --- private/New-MatrixUrl.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/private/New-MatrixUrl.ps1 b/private/New-MatrixUrl.ps1 index cec4597..cb251ae 100644 --- a/private/New-MatrixUrl.ps1 +++ b/private/New-MatrixUrl.ps1 @@ -7,5 +7,5 @@ function New-MatrixUrl { [string]$ApiPath ) - return $ServerUrl.Trim("/") + $ApiPath + return $ServerUrl.Trim("/") + "/" + $ApiPath } \ No newline at end of file