We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f704ef commit 87e244dCopy full SHA for 87e244d
floating-panel-ui-engine.js
@@ -140,7 +140,8 @@ window.MaxExtensionFloatingPanel.processNextQueueItem = function () {
140
if (sendFunction) {
141
// A mock event object is sufficient for the send functions
142
const mockEvent = { preventDefault: () => { } };
143
- sendFunction(mockEvent, item.text, item.autoSend);
+ // Always force auto-send for queued items by passing `true`, overriding the button's individual setting.
144
+ sendFunction(mockEvent, item.text, true);
145
} else {
146
logConCgp('[queue-engine] No send function found for this site. Stopping queue.');
147
this.resetQueue();
0 commit comments