From b3ed9b66e48af9f40d2992b7aef5e3343bb38993 Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Thu, 8 Dec 2016 14:28:58 -0500 Subject: [PATCH] always use https --- lmltfy/Controllers/HomeController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lmltfy/Controllers/HomeController.cs b/lmltfy/Controllers/HomeController.cs index 8db407b..0f3a276 100644 --- a/lmltfy/Controllers/HomeController.cs +++ b/lmltfy/Controllers/HomeController.cs @@ -38,7 +38,7 @@ namespace lmltfy.Controllers throw new HttpException(500, "Error parsing query"); } MvcApplication.azuredb.Save(new[] { searchModel }); - return Url.Action("Search", "Home", new { url = searchModel.Url }, Request.Url.Scheme); + return Url.Action("Search", "Home", new { url = searchModel.Url }, "https"); }