We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dcc034d + afdee91 commit cbd958bCopy full SHA for cbd958b
CHANGELOG.md
@@ -5,6 +5,7 @@ Enterprise Features:
5
6
Fixes:
7
- [core] Unifying alphabetical order for dropdowns with dashboard apps
8
+- [hooks] Added null check for incoming data
9
10
Enterprise Fixes:
11
- [content] Asset URL was wrongly constructed when user switches between apps
plugins/hooks/api/parts/triggers/incoming_data.js
@@ -189,6 +189,9 @@ class IncomingDataTrigger {
189
*/
190
function assertOperation(value, filterObj) {
191
var matched = true;
192
+ if (typeof value === 'undefined' || value === null) {
193
+ return false;
194
+ }
195
if (filterObj.$in && filterObj.$in.indexOf(value) === -1) {
196
matched = false;
197
}
0 commit comments