Dont die on empty results

Signed-off-by: Matt Aimonetti <mattaimonetti@gmail.com>
This commit is contained in:
Arnaud Berthomier 2009-07-13 17:58:48 +08:00 committed by Matt Aimonetti
parent 5140899041
commit 142989a80d

View file

@ -209,12 +209,14 @@ module CouchRest
def remember_where_we_left_off(results, page)
last_row = results['rows'].last
@last_key = last_row['key']
@last_docid = last_row['id']
if last_row
@last_key = last_row['key']
@last_docid = last_row['id']
end
@last_page = page
end
end
end
end
end
end