hugolib: Fix livereload of bundled pages
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 12 Apr 2018 10:19:46 +0000 (12:19 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 12 Apr 2018 10:19:46 +0000 (12:19 +0200)
Fixes #4607

hugolib/hugo_sites.go

index 16beb3db6c67fe659f7a26267be723eec47a7966..7eec98329515a22abd9b915d93a640e7d75f9f7b 100644 (file)
@@ -712,12 +712,7 @@ func (m *contentChangeMap) resolveAndRemove(filename string) (string, string, bu
        fileTp, isContent := classifyBundledFile(name)
 
        // This may be a member of a bundle. Start with branch bundles, the most specific.
-       if fileTp != bundleLeaf {
-               if fileTp == bundleNot && isContent {
-                       // Branch bundles does not contain content pages as resources.
-                       return dir, filename, bundleNot
-               }
-
+       if fileTp == bundleBranch || (fileTp == bundleNot && !isContent) {
                for i, b := range m.branches {
                        if b == dir {
                                m.branches = append(m.branches[:i], m.branches[i+1:]...)