fix parameter join
This commit is contained in:
@@ -75,7 +75,7 @@ namespace Pilz.Networking.CloudProviders.Nextcloud.OCS
|
|||||||
|
|
||||||
// Parse params
|
// Parse params
|
||||||
if (parameters != null)
|
if (parameters != null)
|
||||||
@params = "?" + string.Join(",", parameters.Select(p => $"{p.Key}={p.Value}"));
|
@params = "?" + string.Join("&", parameters.Select(p => $"{p.Key}={p.Value}"));
|
||||||
else
|
else
|
||||||
@params = string.Empty;
|
@params = string.Empty;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user