Comments
Patch
@@ -323,11 +323,12 @@ class bundlerepository(localrepo.localre
@localrepo.unfilteredpropertycache
def manifest(self):
self.bundle.seek(self.manstart)
# consume the header if it exists
self.bundle.manifestheader()
- m = bundlemanifest(self.svfs, self.bundle, self.changelog.rev)
+ linkmapper = self.unfiltered().changelog.rev
+ m = bundlemanifest(self.svfs, self.bundle, linkmapper)
# XXX: hack to work with changegroup3, but we still don't handle
# tree manifests correctly
if self.bundle.version == "03":
self.bundle.filelogheader()
self.filestart = self.bundle.tell()