gernotkogler/xapian_db

searchresult.paginate cannot handle invalid page numbers

gernotkogler opened this issue · 2 comments

If you pass nil or an invalid page number to paginate, you will get a runtime error. To overcome this issue, make sure you pass a valid page number, e.g. in your search controller:

result = XapianDb.search params[:search]
@page = result.paginate :page => params[:page] || 1

Will be fixed in the next release

fixed in 0.4.1