# HG changeset patch # User Tero Koskinen # Date 1404752231 -10800 # Mon Jul 07 19:57:11 2014 +0300 # Node ID 9b83faa881c55a404272a45e988fe364d837b556 # Parent 840f749d7454db6db71d553fa4e24eda589b370d Another http -> https fix. diff --git a/src/urls.adb b/src/urls.adb --- a/src/urls.adb +++ b/src/urls.adb @@ -44,9 +44,9 @@ begin case Blog is when TWITTER_BLOG => - return "http://api.twitter.com/1/statuses/update.json"; + return "https://api.twitter.com/1/statuses/update.json"; when IDENTICA_BLOG => - return "http://identi.ca/api/statuses/update.json"; + return "https://identi.ca/api/statuses/update.json"; end case; end Update_URL;