Alex-D / Trumbowyg

A lightweight and amazing WYSIWYG JavaScript editor under 10kB
https://alex-d.github.io/Trumbowyg
MIT License
4.02k stars 614 forks source link

Fixes "Cannot read property '1' of null" #1238

Closed alegag closed 3 years ago

alegag commented 3 years ago

Our Sentry often report error on color plugin "Cannot read property '1' of null".

Seems to occure when invalid rgb is passed as color to colorToHex function.

To avoid the issue, for the result of rgb.match(), if null, color was not decoded correctly, so returns transparent instead of using null as an array.

Alex-D commented 3 years ago

Thank you for the fix :)