decreased refresh time to a minute

pull/1049/head
Harish Vishwakarma 2024-10-25 12:05:13 +05:30
parent 2e6591caf8
commit b7698d5ffa
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ interface CachedData {
}
const CACHE_KEY = "server_list_cache";
const CACHE_DURATION = 15 * 60 * 1000; // 15 minutes in milliseconds
const CACHE_DURATION = 1 * 60 * 1000; // 1 minutes in milliseconds
// Safe localStorage wrapper
const safeStorage = {