##// END OF EJS Templates
outdated comments: flip the logic of comment invalidation to show comments if invalidation...
marcink -
r1205:a1feec12 stable
parent child Browse files
Show More
@@ -377,7 +377,7 b' class ChangesetCommentsModel(BaseModel):'
377
377
378 elif pull_request:
378 elif pull_request:
379 pull_request = self.__get_pull_request(pull_request)
379 pull_request = self.__get_pull_request(pull_request)
380 if ChangesetCommentsModel.use_outdated_comments(pull_request):
380 if not ChangesetCommentsModel.use_outdated_comments(pull_request):
381 q = self._visible_inline_comments_of_pull_request(pull_request)
381 q = self._visible_inline_comments_of_pull_request(pull_request)
382 else:
382 else:
383 q = self._all_inline_comments_of_pull_request(pull_request)
383 q = self._all_inline_comments_of_pull_request(pull_request)
General Comments 0
You need to be logged in to leave comments. Login now