From: James Moger Date: Sun, 13 Jan 2013 22:31:29 +0000 (-0500) Subject: Set the new objectid for all diff entries (issue-178) X-Git-Tag: v1.2.1~4 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=19e902522d1d55f042daf076a1f7299b7c220061;p=gitblit.git Set the new objectid for all diff entries (issue-178) --- diff --git a/docs/04_releases.mkd b/docs/04_releases.mkd index af702f2c..ee31b692 100644 --- a/docs/04_releases.mkd +++ b/docs/04_releases.mkd @@ -11,6 +11,7 @@ - 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) - Fixed nullpointer on creating a repository with mixed case (issue 185) - Fixed nullpointer when using web.allowForking = true && git.cacheRepositoryList = false (issue 182) +- Likely fix for commit and commitdiff page failures when a submodule reference changes (issue 178) - Build project models from the repository model cache, when possible, to reduce page load time (issue 172) - Fixed loading of Brazilian Portuguese translation from *nix server (github/inaiat) diff --git a/src/com/gitblit/utils/JGitUtils.java b/src/com/gitblit/utils/JGitUtils.java index e1127708..815f8b5a 100644 --- a/src/com/gitblit/utils/JGitUtils.java +++ b/src/com/gitblit/utils/JGitUtils.java @@ -743,11 +743,7 @@ public class JGitUtils { df.setDetectRenames(true); List diffs = df.scan(parent.getTree(), commit.getTree()); for (DiffEntry diff : diffs) { - String objectId = null; - if (FileMode.GITLINK.equals(diff.getNewMode())) { - objectId = diff.getNewId().name(); - } - + String objectId = diff.getNewId().name(); if (diff.getChangeType().equals(ChangeType.DELETE)) { list.add(new PathChangeModel(diff.getOldPath(), diff.getOldPath(), 0, diff .getNewMode().getBits(), objectId, commit.getId().getName(), diff