tracker: fix up formatting, changelog
This commit is contained in:
parent
23514d4b3f
commit
95a5037abf
2 changed files with 5 additions and 4 deletions
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
- drop computing ts digits
|
- drop computing ts digits
|
||||||
- drop logLevel for "! node is already observed" message (not critical)
|
- 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
|
## 16.0.0
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1652,14 +1652,14 @@ export default class App {
|
||||||
try {
|
try {
|
||||||
const messagesBatch = buffer.splice(0, endIndex)
|
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]))
|
this.postToWorker(messagesBatch.map((x) => [...x]))
|
||||||
|
|
||||||
res(null)
|
res(null)
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
this._debug('flushBuffer', e)
|
this._debug('flushBuffer', e)
|
||||||
reject(e)
|
reject(new Error('flushBuffer failed'))
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue