1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-25 22:40:05 +02:00

Bangle.js:actTrk:fix transfer notification

This commit is contained in:
Ganblejs 2024-03-03 18:29:57 +01:00 committed by José Rebelo
parent bfa5d94587
commit 40c3eade21

View File

@ -84,7 +84,7 @@ public class BangleJSActivityTrack extends BangleJSDeviceSupport {
if (tracksList.length()==0) {
device.unsetBusyTask();
device.sendDeviceUpdateIntent(context);
GB.updateTransferNotification(context.getString(R.string.busy_task_fetch_activity_data), "", false, 100, context);
GB.updateTransferNotification(null, "", false, 100, context);
return null;
} else {
return tracksList;
@ -124,7 +124,7 @@ public class BangleJSActivityTrack extends BangleJSDeviceSupport {
returnArray = new JSONArray().put(stopObj).put(tracksList).put(prevPacketCount);
device.unsetBusyTask();
device.sendDeviceUpdateIntent(context);
GB.updateTransferNotification(context.getString(R.string.busy_task_fetch_activity_data), "", false, 100, context);
GB.updateTransferNotification(null, "", false, 100, context);
return returnArray;
}
@ -146,7 +146,7 @@ public class BangleJSActivityTrack extends BangleJSDeviceSupport {
if (tracksList.length()==0) {
device.unsetBusyTask();
device.sendDeviceUpdateIntent(context);
GB.updateTransferNotification(context.getString(R.string.busy_task_fetch_activity_data), "", false, 100, context);
GB.updateTransferNotification(null, "", false, 100, context);
int resetPacketCount = -1;
LOG.info("packetCount reset1: " + resetPacketCount);
returnArray = new JSONArray().put(null).put(tracksList).put(resetPacketCount);