I am using Linkify.WEB_URLS to linkify URLs in text view, but it looks like there's a bug with the regex.
If I am doing this
noteView.setText("go to the website blabla (https://www.test.com/)");
Linkify.addLinks(noteView, Linkify.WEB_URLS);
It linkifies the closing ) too
Here's how it looks like: https://i.stack.imgur.com/XmOuT.png
Is there a way to fix that other than rewriting the regex completely and using the fixed one in my code? Or am I doing something wrong?