mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-02 19:45:51 +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 start = request.getPagingStart();
|
||||
int max = request.getPagingLimit();
|
||||
int max = request.getPagingLimit() + start;
|
||||
int end = total - start;
|
||||
|
||||
if (end > max)
|
||||
|
||||
Reference in New Issue
Block a user