mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-04-25 02:56:41 +07:00
routes: fixed list offset
This commit is contained in:
parent
3562c04dc8
commit
5075fcb841
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ module.exports = async (req, res) => {
|
|||
} else if (limits.max === 0) {
|
||||
limits = { min: 0, max: 0 };
|
||||
} else if (limits.min === limits.max) {
|
||||
limits = { min: limits.max - 20, max: limits.max };
|
||||
limits = { min: limits.max - 25, max: limits.max };
|
||||
} else if (limits.max > 200) {
|
||||
limits = { min: limits.min, max: 200 };
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue