0.09: Fix broken start/stop if recording not enabled (fix #1561)
parent
2f2f6f0b0d
commit
fe0e19148e
|
|
@ -6,4 +6,5 @@
|
||||||
0.05: exstats updated so update 'distance' label is updated, option for 'speed'
|
0.05: exstats updated so update 'distance' label is updated, option for 'speed'
|
||||||
0.06: Add option to record a run using the recorder app automatically
|
0.06: Add option to record a run using the recorder app automatically
|
||||||
0.07: Fix crash if an odd number of active boxes are configured (fix #1473)
|
0.07: Fix crash if an odd number of active boxes are configured (fix #1473)
|
||||||
0.08: Added support for notifications from exstats. Support all stats from exstats
|
0.08: Added support for notifications from exstats. Support all stats from exstats
|
||||||
|
0.09: Fix broken start/stop if recording not enabled (fix #1561)
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,9 @@ function onStartStop() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!prepPromises.length) // fix for Promise.all bug in 2v12
|
||||||
|
prepPromises.push(Promise.resolve());
|
||||||
|
|
||||||
Promise.all(prepPromises)
|
Promise.all(prepPromises)
|
||||||
.then(() => {
|
.then(() => {
|
||||||
if (running) {
|
if (running) {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{ "id": "run",
|
{ "id": "run",
|
||||||
"name": "Run",
|
"name": "Run",
|
||||||
"version":"0.08",
|
"version":"0.09",
|
||||||
"description": "Displays distance, time, steps, cadence, pace and more for runners.",
|
"description": "Displays distance, time, steps, cadence, pace and more for runners.",
|
||||||
"icon": "app.png",
|
"icon": "app.png",
|
||||||
"tags": "run,running,fitness,outdoors,gps",
|
"tags": "run,running,fitness,outdoors,gps",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue