amark/gun · error · Error
${err}
Error message
${err} What it means
Filter rejection in reactiveWithFilters(): the Proxy 'set' trap for a reactive variable (revar.prop = value) runs a per-property filter function declared in the filters object; when filters[prop](value) returns falsy, the assignment is rejected with this error naming the property and offending value. It means the assigned value is not valid for that reactive property per the app's declared constraints.
Source
Thrown at lib/wave.js:917
var error;
error = (err) => {
if (edide.inEditor) {
return edide.editorModule.editor_error.show(err);
} else if (typeof edide.global.require === 'object' && (edide.global[edide.edideNamespace].prodErrorPrinter != null)) {
return edide.global[edide.edideNamespace].prodErrorPrinter.showError(err);
} else {
return console.error(err);
}
};
return (err) => {
var err2;
if (err != null ? err.stack : void 0) {
return error(err); // create error to capture stack trace
} else {
try {
throw Error(err);
} catch (error1) {
err2 = error1;
return error(err2);
}
}
};
}).call(MODSELF={}, edide, MODSELF);
edide.mmParserSpecial = (function (edide, mmParserSpecial) {Object.defineProperty(this, 'module_name', {value:'mmParserSpecial'});
// parse config { .. } and variable : .. : syntaxes
this.config = (trackStr, ts = {}) => {
var endInd, err, name;
endInd = trackStr.search('}') || trackStr.length;
try {
ts.conf = JSON.parse(trackStr.slice(0, +endInd + 1 || 9e9));
if (ts.conf.name != null) {
({name} = ts.conf);
delete ts.conf.name;View on GitHub (pinned to 552227599d)
Solutions
- Fix the value being assigned so it passes the filter for that property
- Review/relax the filter function in the reactiveWithFilters call if the value is actually legitimate
- Add clamping/coercion (e.g. number range or type normalization) before assigning to the reactive
Defensive patterns
Strategy: validation
When it happens
Trigger: Thrown at lib/wave.js:917 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of amark/gun@552227599d (2026-09-02).
Data as JSON: /api/errors/4273d25995972c94.
Report an issue: GitHub.