mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
Do not cache HTML pages. Closes #2613
This commit is contained in:
parent
f1fc3b41c7
commit
57c9bbbb51
@ -199,7 +199,7 @@ func GetCacheDurationSecondsForPath(filePath string) int {
|
|||||||
return 0
|
return 0
|
||||||
} else if fileExtension == ".jpg" || fileExtension == ".png" || fileExtension == ".gif" || fileExtension == ".svg" {
|
} else if fileExtension == ".jpg" || fileExtension == ".png" || fileExtension == ".gif" || fileExtension == ".svg" {
|
||||||
return 60 * 60 * 24 * defaultDaysCached
|
return 60 * 60 * 24 * defaultDaysCached
|
||||||
} else if fileExtension == ".html" {
|
} else if fileExtension == ".html" || filename == "/" || fileExtension == "" {
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user