From 73c38258f1cd825738de339f5d52006b410b28fb Mon Sep 17 00:00:00 2001 From: tastytea Date: Wed, 29 May 2019 03:42:00 +0200 Subject: [PATCH] Fixed root-element check. --- 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 499dd9b..da034e8 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 on status-pages. -// @version 2019.05.29.1 +// @version 2019.05.29.2 // @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 === undefined) { root = document.getElementsByClassName("footer")[0]; - if (root === null) + if (root === undefined) { return; }