summary refs log tree commit diff
path: root/changelog.d/11966.bugfix (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix NewsfileErik Johnston2022-02-111-1/+0
| | | | | \#11966 fixes a bug introduced by #11215, which isn't in a released version.
* Fix to-device being dropped in limited sync in SQLite. (#11966)Erik Johnston2022-02-111-0/+1
If ther are more than 100 to-device messages pending for a device `/sync` will only return the first 100, however the next batch token was incorrectly calculated and so all other pending messages would be dropped. This is due to `txn.rowcount` only returning the number of rows that *changed*, rather than the number *selected* in SQLite.