Fix page pagination on RethinkDB

This commit is contained in:
2026-07-24 22:13:03 -04:00
parent 2f22a1a2d7
commit a380c7ea70
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -572,7 +572,7 @@ type RethinkDbData(conn: Net.IConnection, config: DataConfig, log: ILogger<Rethi
.With(nameof Page.Empty.Revisions, [||]))
orderByFunc (fun row -> row[nameof Page.Empty.Title].Downcase())
skip ((pageNbr - 1) * 25)
limit 25
limit 26
result; withRetryDefault conn
}