1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-07-02 16:38:37 +00:00

feat(config)!: remove SERVER_TIMING_HEADER config option

BREAKING CHANGE: This option is not really useful and it's used only on
the unread page.
This commit is contained in:
Frédéric Guillot 2025-06-15 14:12:39 -07:00
parent ef3dbd3707
commit b4c20749bc
4 changed files with 1 additions and 39 deletions

View file

@ -93,8 +93,6 @@ func (p *Parser) parseLines(lines []string) (err error) {
if parsedValue {
p.opts.logLevel = "debug"
}
case "SERVER_TIMING_HEADER":
p.opts.serverTimingHeader = parseBool(value, defaultTiming)
case "BASE_URL":
p.opts.baseURL, p.opts.rootURL, p.opts.basePath, err = parseBaseURL(value)
if err != nil {