Fixed url panel failure when there are no repository urls (issue-269)
| | |
| | | html: ~ |
| | | text: ~ |
| | | security: ~ |
| | | fixes: ~ |
| | | fixes: |
| | | - Gitblit-as-viewer with no repository urls failed to display summary page (issue 269) |
| | | changes: ~ |
| | | additions: ~ |
| | | dependencyChanges: ~ |
| | |
| | | // grab primary url from the top of the list
|
| | | primaryUrl = repositoryUrls.size() == 0 ? null : repositoryUrls.get(0);
|
| | |
|
| | | boolean canClone = ((primaryUrl.permission == null) || primaryUrl.permission.atLeast(AccessPermission.CLONE));
|
| | | boolean canClone = primaryUrl != null && ((primaryUrl.permission == null) || primaryUrl.permission.atLeast(AccessPermission.CLONE));
|
| | |
|
| | | if (repositoryUrls.size() == 0 || !canClone) {
|
| | | // no urls, nothing to show.
|