Fix json isEmptyData flag bug.

This commit is contained in:
Krad
2022-05-26 15:32:25 +08:00
parent 55a579ea50
commit 7822139a76
2 changed files with 2 additions and 2 deletions

View File

@@ -35,7 +35,7 @@ void ThreadFunc(void* args){
status = SCANNING;
stop_flag = 0;
progress = 0;
for (int i = 0; i < 50; ++i) {
for (int i = 0; i <= 50; ++i) {
if (stop_flag > 0){
stop_flag = 0;
break;