Skip to content

Commit

Permalink
fix: Fix broken empty image configuration used for manual configurati…
Browse files Browse the repository at this point in the history
…ons.
  • Loading branch information
Standard8 committed Sep 25, 2024
1 parent 1f34950 commit b542c6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extension/content/configController.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export default class ConfigController extends HTMLElement {
const buttonValue =
this.shadowRoot.getElementById(`primary-config`).selected;
if (buttonValue == "local-text") {
return "{}";
return `{"data":[]}`;
}
return fetchCached(await this.#getIconsUrl(buttonValue));
}
Expand Down

0 comments on commit b542c6b

Please sign in to comment.