diff --git a/builds/appchan-x.user.js b/builds/appchan-x.user.js index e190298d8..04ef9bb2c 100644 --- a/builds/appchan-x.user.js +++ b/builds/appchan-x.user.js @@ -9836,7 +9836,7 @@ return; } list = QR.nodes.thread; - options = [list.firstChild]; + options = [list.firstElementChild]; _ref = g.BOARD.threads.keys; for (_i = 0, _len = _ref.length; _i < _len; _i++) { thread = _ref[_i]; diff --git a/builds/crx/script.js b/builds/crx/script.js index c78fc18a8..a06f392a2 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -9879,7 +9879,7 @@ return; } list = QR.nodes.thread; - options = [list.firstChild]; + options = [list.firstElementChild]; _ref = g.BOARD.threads.keys; for (_i = 0, _len = _ref.length; _i < _len; _i++) { thread = _ref[_i]; diff --git a/src/Posting/QR.coffee b/src/Posting/QR.coffee index 95be8578a..3c4285158 100644 --- a/src/Posting/QR.coffee +++ b/src/Posting/QR.coffee @@ -365,7 +365,7 @@ QR = generatePostableThreadsList: -> return unless QR.nodes list = QR.nodes.thread - options = [list.firstChild] + options = [list.firstElementChild] for thread in g.BOARD.threads.keys options.push $.el 'option', value: thread