mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-14 17:26:22 +01:00
fix bug in paging of svn log command
This commit is contained in:
@@ -206,7 +206,7 @@ public class SvnLogCommand extends AbstractSvnCommand implements LogCommand
|
|||||||
|
|
||||||
int total = changesetList.size();
|
int total = changesetList.size();
|
||||||
int start = request.getPagingStart();
|
int start = request.getPagingStart();
|
||||||
int max = request.getPagingLimit();
|
int max = request.getPagingLimit() + start;
|
||||||
int end = total - start;
|
int end = total - start;
|
||||||
|
|
||||||
if (end > max)
|
if (end > max)
|
||||||
|
|||||||
Reference in New Issue
Block a user