Fix find_apk_path

This commit is contained in:
LoveSy
2023-06-14 18:44:53 +08:00
committed by John Wu
parent c874391be4
commit 53257b6ea1
3 changed files with 8 additions and 4 deletions

View File

@@ -378,7 +378,7 @@ impl Directory {
None => return Ok(Continue),
Some(ref e) => match f(e)? {
Abort => return Ok(Abort),
Skip => return Ok(Continue),
Skip => continue,
Continue => {
if e.is_dir() {
let mut dir = e.open_as_dir()?;