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 {