aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--make-tweet-url.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/make-tweet-url.js b/make-tweet-url.js
index b440dcf..4cb81c9 100644
--- a/make-tweet-url.js
+++ b/make-tweet-url.js
@@ -3,7 +3,7 @@ function makeTweetUrl(article) {
const route = article.attributes.route;
const baseUrl = "https://twitter.com/intent/tweet";
- const text = "“" + title + "” by @xFuwn – http://blog.fuwn.me" + route;
+ const text = "“" + title + "” by @xFuwn – https://blog.fuwn.me" + route;
return baseUrl + "?text=" + encodeURIComponent(text);
}