From 491a03f80d198dc77f3565ed8891d5a331bc84dd Mon Sep 17 00:00:00 2001 From: tastytea Date: Wed, 29 May 2019 01:37:07 +0200 Subject: [PATCH] Replaced == with ===. --- fediverse/mastodon_cw_toggle.user.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; }