From 989ded8718e5f0c9d1dbb7c7bdf42d5fe0376b00 Mon Sep 17 00:00:00 2001 From: thyttan <6uuxstm66@mozmail.comā©> Date: Thu, 13 Jul 2023 01:47:55 +0200 Subject: [PATCH] android: GB act trks - tell when we sent last log --- apps/android/boot.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/android/boot.js b/apps/android/boot.js index f18b0c06ad..64a8664969 100644 --- a/apps/android/boot.js +++ b/apps/android/boot.js @@ -215,10 +215,10 @@ let line = log.readLine(); while (line) { Bluetooth.println(""); - Bluetooth.println(JSON.stringify({t:"actTrk", log:event.id, line:line})); + Bluetooth.println(JSON.stringify({t:"actTrk", log:event.id, line:line, last:"false"})); line = log.readLine(); if (!line) { - Bluetooth.println(JSON.stringify({t:"actTrk", log:event.id, line:"end of recorder log"})); + Bluetooth.println(JSON.stringify({t:"actTrk", log:event.id, line:"end of recorder log", last:event.last})); } } },