From 57affe7a04f64f915b552fed88200c1a14d43184 Mon Sep 17 00:00:00 2001 From: "i.j" Date: Mon, 23 Jan 2023 18:45:40 +0000 Subject: [PATCH] Show in timeline unlisted toots --- src/mastodon-timeline.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mastodon-timeline.js b/src/mastodon-timeline.js index 4d0826c..bfe3b08 100644 --- a/src/mastodon-timeline.js +++ b/src/mastodon-timeline.js @@ -80,7 +80,7 @@ MastodonApi.prototype.getToots = function () { // Add toots for (let i in jsonData) { // List only public toots - if (jsonData[i].visibility == 'public') { + if (jsonData[i].visibility == 'public' || jsonData[i].visibility == 'unlisted') { if (mapi.HIDE_REBLOG && jsonData[i].reblog || mapi.HIDE_REPLIES && jsonData[i].in_reply_to_id) { // Nothing here (Don't append boosts and/or replies toots) } else {