removed base64 encoding for api parameter.

This commit is contained in:
Shreyas Zare
2019-02-16 15:23:42 +05:30
parent 65915fdfd9
commit 5a904eb0d5

View File

@@ -1236,7 +1236,7 @@ namespace DnsServerCore
{
bool updated = false;
string[] strBlockListUrlList = Encoding.UTF8.GetString(Convert.FromBase64String(strBlockListUrls)).Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
string[] strBlockListUrlList = strBlockListUrls.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
if (oldWebServicePort != _webServicePort)
{