Quellcode durchsuchen

fix: 对 id 做进一步校验

YuJing vor 2 Wochen
Ursprung
Commit
6dc76e2eb4
1 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
  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)