Neil McGann
Neil McGann
If the tab with the metronome app is made inactive the AudioContext is 'suspended' / 'interrupted' and has to be manually re-started with `audioContext.resume();` in the `play()` function once the...
A bit of an edge case now, but `intval( microtime( true ) * 1e6 )` in `rotate_site_keys()` and `rotate_global_keys()` can overflow in 32-bit integers and the memcached daemon throws errors...
There is a bug in the `basePagePath` code that forces a "/" if not specified. Easy fix: ``` if (self.settings.basePagePath && self.settings.basePagePath.indexOf('/', self.settings.basePagePath.length - 2) === -1) { self.settings.basePagePath +=...
The serial input buffer in `getSettings()` can overflow with a long input sequence as the test `if (idx
Line 294 says: ` if (TWI0.MSTATUS & TWI_ARBLOST_bm) { // Arbitration lost or bus error` but there is no test for the bus error via `TWI_BUSERR_bm`. Line 283 in the...