Parcourir la source

fix: 对 id 做进一步校验

YuJing il y a 2 semaines
Parent
commit
6dc76e2eb4
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. 2 1
      features/feature/src/main/ets/components/reagencyComp.ets

+ 2 - 1
features/feature/src/main/ets/components/reagencyComp.ets

@@ -100,7 +100,8 @@ export struct reagencyComp {
 
     let index = this.bubbles.findIndex(item => item.id == id)
     let location = this.bubbles[index]
-    let time = new Date().getTime() - location.id!
+
+    let time = new Date().getTime() - (id ?? 0)
 
     clearTimeout(location.timer)