@bigbinary/neeto-editor 1.38.2 → 1.38.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9987,9 +9987,14 @@ var linkInputRule = function linkInputRule(config) {
9987
9987
  return new Menu$4.InputRule({
9988
9988
  find: config.find,
9989
9989
  handler: function handler(props) {
9990
- var tr = props.state.tr;
9991
- defaultMarkInputRule.handler(props);
9992
- tr.setMeta("preventAutolink", true);
9990
+ try {
9991
+ var tr = props.state.tr;
9992
+ defaultMarkInputRule.handler(props);
9993
+ tr.setMeta("preventAutolink", true);
9994
+ } catch (error) {
9995
+ // https://app.honeybadger.io/projects/94805/faults/108936285
9996
+ if (!(error instanceof RangeError)) throw error;
9997
+ }
9993
9998
  }
9994
9999
  });
9995
10000
  };