Another http -> https fix.
1 files changed, 2 insertions(+), 2 deletions(-) M src/urls.adb
M src/urls.adb +2 -2
@@ 44,9 44,9 @@ package body URLs is 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;