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 5846237 commit 5cb4a1eCopy full SHA for 5cb4a1e
packages/app/src/app/overmind/effects/live/index.ts
@@ -168,7 +168,7 @@ export default new (class Live {
168
data && data._messageId && sentMessages.delete(data._messageId)
169
);
170
171
- if (event === 'phx_reply' || event.startsWith('chan_reply_')) {
+ if (event && (event === 'phx_reply' || event.startsWith('chan_reply_'))) {
172
// No action listens to this
173
return data;
174
}
0 commit comments