Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
ClientServer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
YAPEX
ClientServer
Commits
6f2237df
Commit
6f2237df
authored
5 years ago
by
Janis Daniel Dähne
Browse files
Options
Downloads
Patches
Plain Diff
- fixed potential issue where we try to skip a negative amount when paging
parent
0b5208b6
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/ClientServer/Config/Constants.cs
+1
-1
1 addition, 1 deletion
src/ClientServer/Config/Constants.cs
src/ClientServer/Helpers/PaginationHelper.cs
+2
-1
2 additions, 1 deletion
src/ClientServer/Helpers/PaginationHelper.cs
with
3 additions
and
2 deletions
src/ClientServer/Config/Constants.cs
+
1
−
1
View file @
6f2237df
...
...
@@ -13,7 +13,7 @@ namespace ClientServer.Helpers
/// </summary>
public
static
class
Constants
{
public
static
string
VersionString
=
"2.5.1
0
"
;
public
static
string
VersionString
=
"2.5.1
1
"
;
/// <summary>
/// this is only set once at program.cs!!
...
...
This diff is collapsed.
Click to expand it.
src/ClientServer/Helpers/PaginationHelper.cs
+
2
−
1
View file @
6f2237df
...
...
@@ -111,7 +111,8 @@ namespace ClientServer.Helpers
SearchText
=
searchText
//just to forge the obj
};
int
skip
=
(
page
-
1
)
*
pageSize
;
//this could get negative... if frontend gives bad values
int
skip
=
Math
.
Max
(
0
,
(
page
-
1
)
*
pageSize
);
var
pagedQuery
=
query
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment