mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
Fix some livereload content regressions
Introduced in Hugo 0.38. Fixes #4566
This commit is contained in:
parent
4d115c56fa
commit
a4deaeff0c
3 changed files with 11 additions and 5 deletions
|
@ -347,8 +347,8 @@ func (cfg *BuildCfg) shouldRender(p *Page) bool {
|
|||
return true
|
||||
}
|
||||
|
||||
if cfg.whatChanged != nil && p.File != nil && cfg.whatChanged.files[p.File.Filename()] {
|
||||
return true
|
||||
if cfg.whatChanged != nil && p.File != nil {
|
||||
return cfg.whatChanged.files[p.File.Filename()]
|
||||
}
|
||||
|
||||
return false
|
||||
|
@ -708,10 +708,15 @@ func (m *contentChangeMap) resolveAndRemove(filename string) (string, string, bu
|
|||
dir += helpers.FilePathSeparator
|
||||
}
|
||||
|
||||
fileTp, _ := classifyBundledFile(name)
|
||||
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
|
||||
}
|
||||
|
||||
for i, b := range m.branches {
|
||||
if b == dir {
|
||||
m.branches = append(m.branches[:i], m.branches[i+1:]...)
|
||||
|
|
|
@ -438,7 +438,7 @@ func (ps Pages) findPagePosByFilnamePrefix(prefix string) int {
|
|||
// will return -1 if not found
|
||||
func (ps Pages) findPagePos(page *Page) int {
|
||||
for i, x := range ps {
|
||||
if x.Source.Path() == page.Source.Path() {
|
||||
if x.Source.Filename() == page.Source.Filename() {
|
||||
return i
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1225,7 +1225,8 @@ func (s *Site) absContentDir() string {
|
|||
}
|
||||
|
||||
func (s *Site) isContentDirEvent(e fsnotify.Event) bool {
|
||||
return s.getContentDir(e.Name) != ""
|
||||
relDir, _ := s.PathSpec.RelContentDir(e.Name)
|
||||
return relDir != e.Name
|
||||
}
|
||||
|
||||
func (s *Site) getContentDir(path string) string {
|
||||
|
|
Loading…
Reference in a new issue