diff --git a/js/show-backlinks.js b/js/show-backlinks.js index 3a20ae01..f0671e80 100644 --- a/js/show-backlinks.js +++ b/js/show-backlinks.js @@ -25,12 +25,9 @@ $(document).ready(function() { return; } - let post = $('#reply_' + id); + let post = $('#reply_' + id + ', #op_' + id); if (post.length == 0) { - post = $('#op_' + id); - if (post.length == 0) { - return; - } + return; } let mentioned = post.find('.head div.mentioned');