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