tracker: fix up formatting, changelog

This commit is contained in:
nick-delirium 2025-03-03 17:07:46 +01:00
parent 23514d4b3f
commit 95a5037abf
No known key found for this signature in database
GPG key ID: 93ABD695DF5FDBA0
2 changed files with 5 additions and 4 deletions

View file

@ -2,6 +2,7 @@
- drop computing ts digits
- drop logLevel for "! node is already observed" message (not critical)
- prevent crashes on buffer upload if msg value is wrapped in proxy via other frameworks
## 16.0.0

View file

@ -1652,13 +1652,13 @@ export default class App {
try {
const messagesBatch = buffer.splice(0, endIndex)
// Cast out the proxy object to a regular array.
// Cast out potential proxy objects (produced from vue.js deep reactivity, for example) to a regular array.
this.postToWorker(messagesBatch.map((x) => [...x]))
res(null)
} catch (e) {
this._debug('flushBuffer', e)
reject(e)
reject(new Error('flushBuffer failed'))
}
})
})