src/main/java/com/gitblit/servlet/DownloadZipFilter.java
@@ -54,12 +54,15 @@ @Override protected String extractRepositoryName(String url) { int a = url.indexOf("r="); if (a > -1) { String repository = url.substring(a + 2); if (repository.indexOf('&') > -1) { repository = repository.substring(0, repository.indexOf('&')); } return repository; } return null; } /** * Analyze the url and returns the action of the request.