diff --git a/hrp/pkg/uixt/android_device.go b/hrp/pkg/uixt/android_device.go index e2a30d93..e86206c6 100644 --- a/hrp/pkg/uixt/android_device.go +++ b/hrp/pkg/uixt/android_device.go @@ -310,6 +310,9 @@ func ConvertPoints(data string) (eps []ExportPoint) { for _, line := range lines { if strings.Contains(line, "ext") { idx := strings.Index(line, "{") + if idx == -1 { + continue + } line = line[idx:] p := ExportPoint{} err := json.Unmarshal([]byte(line), &p)