fix type error
This commit is contained in:
parent
2017f9114f
commit
8c5e564066
|
@ -43,7 +43,7 @@ export async function fetchInstance(force = false): Promise<Misskey.entities.Met
|
||||||
const cachedAt = miLocalStorage.getItem('instanceCachedAt') ? parseInt(miLocalStorage.getItem('instanceCachedAt')!) : 0;
|
const cachedAt = miLocalStorage.getItem('instanceCachedAt') ? parseInt(miLocalStorage.getItem('instanceCachedAt')!) : 0;
|
||||||
|
|
||||||
if (Date.now() - cachedAt < 1000 * 60 * 60) {
|
if (Date.now() - cachedAt < 1000 * 60 * 60) {
|
||||||
return;
|
return instance;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue