Changeset 0.29.2 (#197)

Co-authored-by: Jeffrey Smith <jasafpro@gmail.com>
Co-committed-by: Jeffrey Smith <jasafpro@gmail.com>
This commit is contained in:
2026-03-17 22:31:34 +00:00
committed by xcaliber
parent d4de84f3f1
commit 115004a3ab
35 changed files with 2285 additions and 48 deletions

View File

@@ -42,7 +42,7 @@ const Extensions = {
for (const ext of exts) {
// Parse manifest to check for _script (inline) or entry (file)
const manifest = ext.manifest || {};
const extId = ext.ext_id;
const extId = ext.id;
if (manifest._script) {
// Inject script tag pointing at the asset endpoint
@@ -431,7 +431,7 @@ const Extensions = {
_getUserSettings(extId) {
// Find user settings from the manifest data loaded from API
const manifest = this._manifests.find(m => m.ext_id === extId);
const manifest = this._manifests.find(m => m.id === extId);
if (manifest?.user_settings) {
try {
return typeof manifest.user_settings === 'string'