From 5c73d039155f72b36b14465c4bfbe3bb6e491497 Mon Sep 17 00:00:00 2001 From: pentargency Date: Sun, 19 Nov 2017 07:53:40 -0800 Subject: [PATCH] Modified manner in which isYou accesses board and thread ID to fix issue with post objects not containing board and thread members on an index --- src/Quotelinks/QuoteYou.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Quotelinks/QuoteYou.coffee b/src/Quotelinks/QuoteYou.coffee index 5a5aa0a76..2f71ebd38 100644 --- a/src/Quotelinks/QuoteYou.coffee +++ b/src/Quotelinks/QuoteYou.coffee @@ -33,8 +33,8 @@ QuoteYou = isYou: (post) -> !!QuoteYou.db?.get { - boardID: post.board.ID - threadID: post.thread.ID + boardID: post.boardID + threadID: post.threadID postID: post.ID }