fix some const

This commit is contained in:
Spmario233 2023-10-19 21:58:13 +08:00
parent 9123425a7c
commit d9ca869c81
1 changed files with 2 additions and 2 deletions

View File

@ -35472,7 +35472,7 @@
},
hasAllGlobalHistory:function(key,filter,last){
if(!key||!filter) return;
const stopped=false;
let stopped=false;
_status.globalHistory.forEach(value=>{
if(value[key]){
if(last&&value[key].includes(last)&&!stopped){
@ -35491,7 +35491,7 @@
},
checkAllGlobalHistory:function(key,filter,last){
if(!key||!filter) return;
const stopped=false;
let stopped=false;
_status.globalHistory.forEach(value=>{
if(value[key]){
if(last&&value[key].includes(last)&&!stopped){