Переглянути джерело

fix: 对 id 做进一步校验

YuJing 2 тижнів тому
батько
коміт
6dc76e2eb4

+ 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)