From: Bjørn Erik Pedersen Date: Mon, 10 Apr 2017 15:54:55 +0000 (+0200) Subject: hugolib: Only show rssUri deprecation WARNING if it is actually set X-Git-Tag: v0.20.1~10 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=cfd3af8e;p=brevno-suite%2Fhugo hugolib: Only show rssUri deprecation WARNING if it is actually set Fixes #3319 --- diff --git a/hugolib/site_output.go b/hugolib/site_output.go index f321848e..56009285 100644 --- a/hugolib/site_output.go +++ b/hugolib/site_output.go @@ -80,7 +80,9 @@ func createDefaultOutputFormats(cfg config.Provider) (map[string]output.Formats, rssBase = rssType.BaseName } else { // Remove in Hugo 0.22. - helpers.Deprecated("Site config", "rssURI", "Set baseName in outputFormats.RSS", false) + if rssBase != "index.xml" { + helpers.Deprecated("Site config", "rssURI", "Set baseName in outputFormats.RSS", false) + } // RSS has now a well defined media type, so strip any suffix provided rssBase = strings.TrimSuffix(rssBase, path.Ext(rssBase)) }