Fix minimum ID value.

This commit is contained in:
Syfaro 2020-01-11 23:12:22 -06:00
parent f207d110a1
commit 797fa4cb11

View File

@ -9,7 +9,7 @@ async fn load_page(
if let Some(before_id) = before_id { if let Some(before_id) = before_id {
query.push(("before_id", before_id.to_string())); query.push(("before_id", before_id.to_string()));
if before_id == 1 { if before_id <= 14 {
panic!("that's it."); panic!("that's it.");
} }
} }