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