mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-13 01:15:43 +00:00
Join GET query with & not ; (fixes #48)
This commit is contained in:
parent
9bfb78a1d6
commit
e3af2ce91d
@ -1,4 +1,4 @@
|
|||||||
using System.Web;
|
using System.Web;
|
||||||
|
|
||||||
namespace X10D;
|
namespace X10D;
|
||||||
|
|
||||||
@ -82,6 +82,6 @@ public static class DictionaryExtensions
|
|||||||
list.Add(Sanitize(pair));
|
list.Add(Sanitize(pair));
|
||||||
}
|
}
|
||||||
|
|
||||||
return string.Join(";", list);
|
return string.Join('&', list);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user