Explorar el Código

fix: 对 id 做进一步校验

YuJing hace 2 semanas
padre
commit
6dc76e2eb4
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  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)