diff --git a/fediverse/mastodon_cw_toggle.user.js b/fediverse/mastodon_cw_toggle.user.js index 1b3609a..3969fd5 100644 --- a/fediverse/mastodon_cw_toggle.user.js +++ b/fediverse/mastodon_cw_toggle.user.js @@ -1,7 +1,7 @@ // ==UserScript== // @name Mastodon CW toggle // @description Toggles the visibility of all statuses with content warnings. -// @version 2019.05.28.4 +// @version 2019.05.29.1 // @author tastytea // @copyright 2019, tastytea (https://tastytea.de/) // @license GPL-3.0-only @@ -44,10 +44,10 @@ function add_button() { // If there is no element named “column-1”, use the footer. var root = document.getElementsByClassName("column-1")[0]; - if (root == null) + if (root === null) { root = document.getElementsByClassName("footer")[0]; - if (root == null) + if (root === null) { return; }