mirror of
https://github.com/fergalmoran/DnsServer.git
synced 2026-03-06 21:45:15 +00:00
removed base64 encoding for api parameter.
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user