From 140e973e7158e7dc643d4d8930b6e30c035a3e5f Mon Sep 17 00:00:00 2001 From: ccd0 Date: Sun, 2 Aug 2015 04:18:27 -0700 Subject: [PATCH] Fix 'null' appearing in QR. --- src/Posting/QR.post.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Posting/QR.post.coffee b/src/Posting/QR.post.coffee index c4c715dd9..5636ba648 100644 --- a/src/Posting/QR.post.coffee +++ b/src/Posting/QR.post.coffee @@ -105,7 +105,7 @@ QR.post = class for name in ['thread', 'name', 'email', 'sub', 'com', 'filename'] continue unless node = QR.nodes[name] - node.value = @[name] or node.dataset.default or null + node.value = @[name] or node.dataset.default or '' (if @thread isnt 'new' then $.addClass else $.rmClass) QR.nodes.el, 'reply-to-thread'