0

Fix leftover value when we would deal with cache duration in minutes instead of seconds

This commit is contained in:
Gabe Kangas 2020-10-06 09:17:41 -07:00
parent eb404fba34
commit 06e5fe09f4

View File

@ -60,5 +60,5 @@ func getCacheDurationSecondsForPath(filePath string) int {
}
// Default cache length in seconds
return 30 * 60
return 30
}