Merge branch 'main' into aa/type-cleanup-py

This commit is contained in:
marios
2023-10-17 16:50:13 +03:00
committed by GitHub
+2 -1
View File
@@ -38,7 +38,8 @@ export async function getStore(): Promise<Store> {
export async function getPluginList(): Promise<StorePlugin[]> {
let version = await window.DeckyPluginLoader.updateVersion();
let store = await getSetting<Store | null>('store', null);
let store = await getSetting<Store>('store', null);
let customURL = await getSetting<string>('store-url', 'https://plugins.deckbrew.xyz/plugins');
let storeURL;
if (store === null) {