51c9ce078d
Offset is eventually passed to sqlite as an OFFSET clause. This works as follows: sqlite> select num from seq limit 5 offset 0; ┌─────┐ │ num │ ├─────┤ │ 1 │ │ 2 │ │ 3 │ │ 4 │ │ 5 │ └─────┘ sqlite> select num from seq limit 5 offset 5; ┌─────┐ │ num │ ├─────┤ │ 6 │ │ 7 │ │ 8 │ │ 9 │ │ 10 │ └─────┘ However, the code currently emits a request for offset + 1, which ends up skipping a message sqlite> select num from seq limit 5 offset 5+1; ┌─────┐ │ num │ ├─────┤ │ 7 │ │ 8 │ │ 9 │ │ 10 │ │ 11 │ └─────┘ |
||
---|---|---|
.. | ||
audio | ||
components | ||
css | ||
img | ||
js | ||
themes | ||
favicon.ico | ||
index.html.tpl | ||
robots.txt | ||
service-worker.js | ||
shims-vue.d.ts | ||
thelounge.webmanifest | ||
tsconfig.json |