Skip to content

Commit

Permalink
fix: filename extention
Browse files Browse the repository at this point in the history
  • Loading branch information
NoonieBao committed Jan 10, 2025
1 parent 51c419b commit 76ff451
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/com/xconst/vavatar/utils/FileUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public synchronized static void randomSetNext(File dir) {
if (f.getName().contains(theUsedJpg)) {
return false; //已经使用过的
}
if (f.getName().contains(nextTick)) {
if (f.getName().contains(theUsedJpg)) {
hasUnUsed[0] = true; //已经准备好了下一张
}
return true;
Expand Down

0 comments on commit 76ff451

Please sign in to comment.