Change currency data stale time to 12 hours instead of 24

This commit is contained in:
Jonatan Heyman 2023-03-20 14:30:43 +01:00
parent 8c6d22d10d
commit 2d3a20e4cd
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
import CONFIG from "../config"
const STALE_TIME = 1000 * 3600 * 24
const STALE_TIME = 1000 * 3600 * 12
export default async function getCurrencyData() {
const currency = CONFIG.get("currency")