Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion obs-plugin/com.obs.streamdeck.sdPlugin/bin/plugin.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ process.on('message', (msg) => {
// keyUp has no OBS actions that require hold-release, so nothing to do

if (msg.event === 'sendToPlugin') {
handleSendToPlugin(msg.actionUUID || '', msg.payload || {})
handleSendToPlugin(msg.actionUUID || '', msg.settings || {})
}
})

Expand Down
2 changes: 1 addition & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -1415,7 +1415,7 @@ function PluginInspector({ action, onChange, pluginManifests = [] }) {
'*'
)
} else if (e.data.type === 'sdpi:sendToPlugin') {
window.streamDeck?.sendToPlugin?.(pluginUUID, actionUUID, 'sendToPropertyInspector', e.data.payload, null)
window.streamDeck?.sendToPlugin?.(pluginUUID, actionUUID, 'sendToPlugin', e.data.payload, null)
}
}
const piHandler = e => {
Expand Down