Skip to content

Commit

Permalink
Merge pull request #203 from ubiquity-os/development
Browse files Browse the repository at this point in the history
Development into main
  • Loading branch information
rndquu authored Nov 14, 2024
2 parents f578f1c + d6b42c6 commit b226b87
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/github/utils/plugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ async function fetchWorkerManifest(url: string): Promise<Manifest | null> {
const manifestUrl = `${url}/manifest.json`;
try {
const result = await fetch(manifestUrl);
const manifest = decodeManifest(await result.json());
const jsonData = await result.json();
const manifest = decodeManifest(jsonData);
_manifestCache[url] = manifest;
return manifest;
} catch (e) {
Expand Down

0 comments on commit b226b87

Please sign in to comment.