diff --git a/src/stores/world.js b/src/stores/world.js index 793fd767..ef71c259 100644 --- a/src/stores/world.js +++ b/src/stores/world.js @@ -146,13 +146,9 @@ export const useWorldStore = defineStore('World', () => { D.timeSpent = ref.timeSpent; } }); - const loadWorldRequest = forceRefresh - ? worldRequest.getWorld({ - worldId: L.worldId - }) - : worldRequest.getCachedWorld({ - worldId: L.worldId - }); + const loadWorldRequest = worldRequest.getWorld({ + worldId: L.worldId + }); loadWorldRequest .catch((err) => { nextTick(() => (D.loading = false));