From 86a4c62ebacde74db600232773efb885947d6f1c Mon Sep 17 00:00:00 2001 From: Craxy Date: Tue, 17 May 2016 21:39:54 +0200 Subject: [PATCH] Connection to ParkitectNexus now uses https instead of http This is only the case for the RELEASE build, not DEBUG build: there's no https access for dev.parkitectnexus.com --- src/ParkitectNexus.Data/Web/Website.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ParkitectNexus.Data/Web/Website.cs b/src/ParkitectNexus.Data/Web/Website.cs index c0d78f5..4a1ae0e 100644 --- a/src/ParkitectNexus.Data/Web/Website.cs +++ b/src/ParkitectNexus.Data/Web/Website.cs @@ -26,7 +26,7 @@ public class Website : IWebsite #if DEBUG private const string WebsiteUrl = "http://{0}dev.parkitectnexus.com/{1}"; #else - private const string WebsiteUrl = "http://{0}parkitectnexus.com/{1}"; + private const string WebsiteUrl = "https://{0}parkitectnexus.com/{1}"; #endif ///