- Fixed bug where permission changes were not visible in the web ui to a logged-in user until the user logged-out and then logged back in again (issue-186)\r
- Fixed nullpointer on creating a repository with mixed case (issue 185)\r
- Fixed nullpointer when using web.allowForking = true && git.cacheRepositoryList = false (issue 182)\r
+- Likely fix for commit and commitdiff page failures when a submodule reference changes (issue 178)\r
- Build project models from the repository model cache, when possible, to reduce page load time (issue 172)\r
- Fixed loading of Brazilian Portuguese translation from *nix server (github/inaiat)\r
\r
df.setDetectRenames(true);\r
List<DiffEntry> diffs = df.scan(parent.getTree(), commit.getTree());\r
for (DiffEntry diff : diffs) {\r
- String objectId = null;\r
- if (FileMode.GITLINK.equals(diff.getNewMode())) {\r
- objectId = diff.getNewId().name();\r
- }\r
-\r
+ String objectId = diff.getNewId().name();\r
if (diff.getChangeType().equals(ChangeType.DELETE)) {\r
list.add(new PathChangeModel(diff.getOldPath(), diff.getOldPath(), 0, diff\r
.getNewMode().getBits(), objectId, commit.getId().getName(), diff\r