[RELEASE] Life360 Tracker - Works with the Life360+ app!

That's my fault - I removed these 2 methods from Life360+ when doing some cleanup at one point. I didn't see anywhere they were called.

I went back to the original version to see if I could just re-add those methods. I can but still not sure exactly what they do - at least that sendHistory() one:

def sendHistory(msgValue) {
...
        try {
            if(state.list1 == null) state.list1 = []

            getDateTime()
            last = "${newDate} - ${msgValue}"
            state.list1.add(0,last)

It looks like this method just adds whatever is passed to it (msgValue) to an array. It doesn't look like it does anything with any of the driver state data...

Is it actually used for anything in the Life360 Tracker device? Or, is it just the error in the logs that's the problem?