this is what i get for commiting to main 😔
This commit is contained in:
Party Wumpus
2023-10-17 13:52:11 +01:00
committed by GitHub
parent 407e647993
commit f53a3f383d

View File

@@ -44,7 +44,7 @@ export async function getPluginList(): Promise<StorePlugin[]> {
if (store === null) {
console.log('Could not get store, using Default.');
await setSetting('store', Store.Default);
store = Store.Default
store = Store.Default;
}
switch (+store) {
case Store.Default:
@@ -60,13 +60,13 @@ export async function getPluginList(): Promise<StorePlugin[]> {
console.error('Somehow you ended up without a standard URL, using the default URL.');
storeURL = 'https://plugins.deckbrew.xyz/plugins';
break;
}
return fetch(storeURL, {
method: 'GET',
headers: {
'X-Decky-Version': version.current,
},
}).then((r) => r.json());
}
}
export async function installFromURL(url: string) {