From f185557dc16c335551397bfdbafde04746f7ed3d Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Tue, 16 Apr 2013 00:03:05 +0200 Subject: [PATCH] The file limit isn't hit anymore in stickies. --- src/qr.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qr.coffee b/src/qr.coffee index 9e21d1714..4359f27bf 100644 --- a/src/qr.coffee +++ b/src/qr.coffee @@ -897,7 +897,7 @@ QR = err = 'You can\'t reply to this thread anymore.' else unless post.com or post.file err = 'No file selected.' - else if post.file and thread.fileLimit and !thread.isSticky + else if post.file and thread.fileLimit err = 'Max limit of image replies has been reached.' else for hook in QR.preSubmitHooks if err = hook post, thread