tweak fetchCustomEmojis timing
This commit is contained in:
parent
3e112da486
commit
307a882649
|
@ -9,8 +9,6 @@ export let customEmojis: {
|
||||||
url: string;
|
url: string;
|
||||||
}[] = storageCache ? JSON.parse(storageCache) : [];
|
}[] = storageCache ? JSON.parse(storageCache) : [];
|
||||||
|
|
||||||
fetchCustomEmojis();
|
|
||||||
|
|
||||||
export async function fetchCustomEmojis() {
|
export async function fetchCustomEmojis() {
|
||||||
const now = Date.now();
|
const now = Date.now();
|
||||||
const lastFetchedAt = miLocalStorage.getItem('lastEmojisFetchedAt');
|
const lastFetchedAt = miLocalStorage.getItem('lastEmojisFetchedAt');
|
||||||
|
|
|
@ -45,6 +45,7 @@ import { getUrlWithoutLoginId } from '@/scripts/login-id';
|
||||||
import { getAccountFromId } from '@/scripts/get-account-from-id';
|
import { getAccountFromId } from '@/scripts/get-account-from-id';
|
||||||
import { miLocalStorage } from './local-storage';
|
import { miLocalStorage } from './local-storage';
|
||||||
import { claimAchievement, claimedAchievements } from './scripts/achievements';
|
import { claimAchievement, claimedAchievements } from './scripts/achievements';
|
||||||
|
import { fetchCustomEmojis } from './custom-emojis';
|
||||||
|
|
||||||
(async () => {
|
(async () => {
|
||||||
console.info(`Misskey v${version}`);
|
console.info(`Misskey v${version}`);
|
||||||
|
@ -178,6 +179,10 @@ import { claimAchievement, claimedAchievements } from './scripts/achievements';
|
||||||
initializeSw();
|
initializeSw();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
try {
|
||||||
|
await fetchCustomEmojis();
|
||||||
|
} catch (err) {}
|
||||||
|
|
||||||
const app = createApp(
|
const app = createApp(
|
||||||
window.location.search === '?zen' ? defineAsyncComponent(() => import('@/ui/zen.vue')) :
|
window.location.search === '?zen' ? defineAsyncComponent(() => import('@/ui/zen.vue')) :
|
||||||
!$i ? defineAsyncComponent(() => import('@/ui/visitor.vue')) :
|
!$i ? defineAsyncComponent(() => import('@/ui/visitor.vue')) :
|
||||||
|
|
Loading…
Reference in New Issue