mirror of
https://github.com/Syfaro/fuzzysearch.git
synced 2024-11-23 23:32:32 +00:00
Fix minimum ID value.
This commit is contained in:
parent
f207d110a1
commit
797fa4cb11
@ -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.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user