summaryrefslogtreecommitdiff
path: root/app/controllers/concerns/paginated_collection.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/concerns/paginated_collection.rb')
-rw-r--r--app/controllers/concerns/paginated_collection.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/concerns/paginated_collection.rb b/app/controllers/concerns/paginated_collection.rb
index be84215a9e2..fcee4493314 100644
--- a/app/controllers/concerns/paginated_collection.rb
+++ b/app/controllers/concerns/paginated_collection.rb
@@ -6,7 +6,7 @@ module PaginatedCollection
private
def redirect_out_of_range(collection, total_pages = collection.total_pages)
- return false if total_pages.zero?
+ return false if total_pages == 0
out_of_range = collection.current_page > total_pages