From cd2baebb2cf8b4b94be70a10c424ab915ac29ebb Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 22 Jul 2017 12:49:46 +0100 Subject: [PATCH] Scripts: Updated URLs --- scripts/add-ons/update-holidays.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/add-ons/update-holidays.pl b/scripts/add-ons/update-holidays.pl index 0237fa3a9..0aaa8b643 100755 --- a/scripts/add-ons/update-holidays.pl +++ b/scripts/add-ons/update-holidays.pl @@ -130,8 +130,8 @@ my $current = (localtime (time))[5] + 1900; my $next = $current + 1; # Construct the holidata.net URL. -my $url_current = "http://holidata.net/${locale}/${current}.json"; -my $url_next = "http://holidata.net/${locale}/${next}.json"; +my $url_current = "https://holidata.net/${locale}/${current}.json"; +my $url_next = "https://holidata.net/${locale}/${next}.json"; # Fetch data for the current year. my $data_current = get ($url_current);