Use https urls instead of plain http ones.
1 files changed, 2 insertions(+), 2 deletions(-) M src/urls.adb
M src/urls.adb +2 -2
@@ 34,9 34,9 @@ package body URLs is begin case Blog is when TWITTER_BLOG => - return "http://api.twitter.com/1.1/statuses/home_timeline.json"; + return "https://api.twitter.com/1.1/statuses/home_timeline.json"; when IDENTICA_BLOG => - return "http://identi.ca/api/statuses/home_timeline.json"; + return "https://identi.ca/api/statuses/home_timeline.json"; end case; end Home_Timeline_URL;