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 9db2c3c commit e4db950Copy full SHA for e4db950
tutorials/content-filtering-subscription.md
@@ -111,16 +111,16 @@ options.contentFilter = {
111
};
112
```
113
114
-````
115
-
116
## Troubleshooting
117
118
**Filter Not Working:**
+
119
- Check RMW compatibility (CycloneDDS not supported)
120
- Verify parameter syntax (strings need quotes: `"'value'"`)
121
- Test with simple expressions first
122
123
**Common Mistakes:**
124
```javascript
125
// ❌ Wrong - JavaScript comparison operator
126
{ expression: "data !== 0", parameters: [] }
@@ -133,7 +133,7 @@ options.contentFilter = {
133
134
// ✅ Correct - string comparison with quotes in parameter
135
{ expression: "status = %0", parameters: ["'active'"] }
136
+```
137
138
## RMW Compatibility
139
0 commit comments