I have a function which is subscribed to track mode changes:
subscribe(location, changedLocationMode)
When the mode changes, I actually receive three events (see logged dates); the log prints "evt.data":
app:435 2018-07-31 20:00:00.093:debug changedLocationMode: Evening
app:435 2018-07-31 20:06:00.250:debug changedLocationMode: true
app:435 2018-07-31 20:06:00.817:debug changedLocationMode: 2018-08-02T00:04:00.000Z
So, first the new mode, then a boolean, then the UTC date about when that happened... Why?