mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 13:09:18 +08:00
add extra safety so offset can not be negative
This commit is contained in:
parent
9981257880
commit
c02f1b026a
|
@ -170,7 +170,9 @@ class TopicQuery
|
|||
if page == 0
|
||||
(pinned_topics + unpinned_topics)[0...limit] if limit
|
||||
else
|
||||
unpinned_topics.offset((page * per_page - pinned_topics.count) - 1).to_a
|
||||
offset = (page * per_page - pinned_topics.count) - 1
|
||||
offset = 0 unless offset > 0
|
||||
unpinned_topics.offset(offset).to_a
|
||||
end
|
||||
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue
Block a user