1
0
mirror of https://github.com/axllent/mailpit.git synced 2025-08-13 20:04:49 +02:00

Chore: Extend latest version cache expiration from 5 to 15 minutes

This commit is contained in:
Ralph Slooten
2025-05-20 16:55:37 +12:00
parent 74c6a0a434
commit ff272d1c5e

View File

@@ -88,7 +88,7 @@ func Load() AppInformation {
// clear latest version cache after 5 minutes // clear latest version cache after 5 minutes
go func() { go func() {
time.Sleep(5 * time.Minute) time.Sleep(15 * time.Minute)
latestVersionCache = "" latestVersionCache = ""
}() }()
} }