File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
src/main/java/com/gitblit/wicket/panels Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 1111 - Use bash instead of sh in Linux/OSX shell scripts (issue 154)
1212 - Fix NPE when getting user's fork without repository list caching (issue 182)
1313 - Fix internal error on folder history links (issue 192)
14+ - Fix NPE in repositories panel when viewing a federation proposal (issue 195)
1415 - Fix NPEs when initializing the context on a servlet containers which returns a null contextFolder (issue 199)
1516 - Fixed incorrect icon file name for .doc files (issue 200)
1617 - Do not queue emails with no recipients (issue 201)
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ public void onClick() {
132132 for (String root : roots ) {
133133 List <RepositoryModel > subModels = groups .get (root );
134134 ProjectModel project = GitBlit .self ().getProjectModel (root );
135- GroupRepositoryModel group = new GroupRepositoryModel (project .name , subModels .size ());
135+ GroupRepositoryModel group = new GroupRepositoryModel (project == null ? root : project .name , subModels .size ());
136136 if (project != null ) {
137137 group .title = project .title ;
138138 group .description = project .description ;
You can’t perform that action at this time.
0 commit comments