mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-02 03:25:56 +01:00
fix bug in history of subversion repositories
This commit is contained in:
@@ -202,7 +202,7 @@ public class SvnLogCommand extends AbstractSvnCommand implements LogCommand
|
||||
int max = request.getPagingLimit() + start;
|
||||
int end = total;
|
||||
|
||||
if (end > max)
|
||||
if ((max > 0) && (end > max))
|
||||
{
|
||||
end = max;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user