From 6eb7e8711ee61f18f3cada5d27e5a1c05c81207c Mon Sep 17 00:00:00 2001 From: Shreyas Zare Date: Sat, 2 Oct 2021 13:17:37 +0530 Subject: [PATCH] DnsServerApp: updated the update check url. --- DnsServerApp/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DnsServerApp/Program.cs b/DnsServerApp/Program.cs index 310f77e6..867b6bc2 100644 --- a/DnsServerApp/Program.cs +++ b/DnsServerApp/Program.cs @@ -43,11 +43,11 @@ namespace DnsServerApp switch (Environment.OSVersion.Platform) { case PlatformID.Win32NT: - updateCheckUri = new Uri("https://go.technitium.com/?id=20"); + updateCheckUri = new Uri("https://go.technitium.com/?id=41"); break; default: - updateCheckUri = new Uri("https://go.technitium.com/?id=21"); + updateCheckUri = new Uri("https://go.technitium.com/?id=42"); break; }