return list verbatim if no cursor

This commit is contained in:
2025-08-25 19:11:09 -07:00
parent ae166d8509
commit f6aa44ffc5

View File

@@ -1201,7 +1201,7 @@ async fn download_creations_pages_from_checkpoint(context:&CookieContext,owner:r
let cursor=match cursor{
Ok(cursor)=>Some(cursor),
Err(e)=>match e.kind(){
std::io::ErrorKind::NotFound=>None,
std::io::ErrorKind::NotFound=>return Ok(versions),
_=>Err(e)?,
}
};