Loading remote/shared/messagehandler/ModuleCache.sys.mjs +1 −1 Original line number Diff line number Diff line Loading @@ -186,7 +186,7 @@ export class ModuleCache { * @returns {boolean} * True if the module exists. */ hasModule(moduleName, destination) { hasModuleClass(moduleName, destination) { const classes = this.getAllModuleClasses(moduleName, destination); return !!classes.length; } Loading remote/shared/messagehandler/WindowGlobalMessageHandler.sys.mjs +1 −1 Original line number Diff line number Diff line Loading @@ -130,7 +130,7 @@ export class WindowGlobalMessageHandler extends MessageHandler { if (!structuredUpdates.has(moduleName)) { // Skip session data item if the module is not present // for the destination. if (!this.moduleCache.hasModule(moduleName, destination)) { if (!this.moduleCache.hasModuleClass(moduleName, destination)) { continue; } structuredUpdates.set(moduleName, new Map()); Loading Loading
remote/shared/messagehandler/ModuleCache.sys.mjs +1 −1 Original line number Diff line number Diff line Loading @@ -186,7 +186,7 @@ export class ModuleCache { * @returns {boolean} * True if the module exists. */ hasModule(moduleName, destination) { hasModuleClass(moduleName, destination) { const classes = this.getAllModuleClasses(moduleName, destination); return !!classes.length; } Loading
remote/shared/messagehandler/WindowGlobalMessageHandler.sys.mjs +1 −1 Original line number Diff line number Diff line Loading @@ -130,7 +130,7 @@ export class WindowGlobalMessageHandler extends MessageHandler { if (!structuredUpdates.has(moduleName)) { // Skip session data item if the module is not present // for the destination. if (!this.moduleCache.hasModule(moduleName, destination)) { if (!this.moduleCache.hasModuleClass(moduleName, destination)) { continue; } structuredUpdates.set(moduleName, new Map()); Loading