From d1f6a815bd6dc2c79618eb4ac07dbdfb2991e615 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Wed, 13 Aug 2014 18:48:24 -0400 Subject: [PATCH] Switch the ping view on the view repo page to always use HTTPS --- static/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/app.js b/static/js/app.js index 97b750ba5..3bcbd2c7d 100644 --- a/static/js/app.js +++ b/static/js/app.js @@ -5359,7 +5359,7 @@ quayApp.directive('locationView', function () { }; $scope.getLocationPing = function(location) { - var url = 'http://' + LOCATIONS[location]['data'] + '/okay.txt'; + var url = 'https://' + LOCATIONS[location]['data'] + '/okay.txt'; PingService.pingUrl($scope, url, function(ping, success, count) { if (count == 3 || !success) { $scope.locationPing = success ? ping : -1;