searchresult.paginate cannot handle invalid page numbers
gernotkogler opened this issue · 2 comments
gernotkogler commented
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
gernotkogler commented
Will be fixed in the next release
gernotkogler commented
fixed in 0.4.1