1
0
mirror of https://github.com/oliverbooth/X10D synced 2024-11-10 03:45:41 +00:00

Join GET query with & not ; (fixes #48)

This commit is contained in:
Oliver Booth 2022-04-20 14:56:00 +01:00
parent 9bfb78a1d6
commit e3af2ce91d
No known key found for this signature in database
GPG Key ID: 32A00B35503AF634

View File

@ -1,4 +1,4 @@
using System.Web;
using System.Web;
namespace X10D;
@ -82,6 +82,6 @@ public static class DictionaryExtensions
list.Add(Sanitize(pair));
}
return string.Join(";", list);
return string.Join('&', list);
}
}