Pier Angelo Vendrame pushed to branch mullvad-browser-152.0a1-16.0-2 at The Tor Project / Applications / Mullvad Browser Commits: b8c7d20e by Pier Angelo Vendrame at 2026-06-25T12:07:25+02:00 fixup! BB 44045: Disable ML features. BB 45016: Fix more ML Errors. - - - - - 1 changed file: - browser/components/aiwindow/ui/modules/AIWindowConstants.sys.mjs Changes: ===================================== browser/components/aiwindow/ui/modules/AIWindowConstants.sys.mjs ===================================== @@ -6,10 +6,6 @@ import { XPCOMUtils } from "resource://gre/modules/XPCOMUtils.sys.mjs"; const lazy = {}; -ChromeUtils.defineESModuleGetters(lazy, { - resolveChatModelChoice: - "moz-src:///browser/components/aiwindow/models/Utils.sys.mjs", -}); XPCOMUtils.defineLazyPreferenceGetter( lazy, @@ -69,7 +65,8 @@ export async function getModelForChoice(choiceId = lazy.modelChoice) { return null; } - const resolved = await lazy.resolveChatModelChoice(choiceId); + // tor-browser#45016: EngineProcess.sys.mjs is not available for us. + const resolved = { model: "unknown", ownerName: "unknown" }; if (resolved) { return resolved; } View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/b8c7... -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/b8c7... You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help