I made a quick change to what this trigger matches on to make it work a little better. Before it was getting stuck on any links that had a - or = or whatever.
match="(.*)http\://[a-zA-Z0-9\-\.]+\.[a-zA-Z]{2,3}(\S*)?(.*)"
The above trigger match seems to catch on more URLs. It still misses a few, but it's good enough for me now.
match="(.*)http\://[a-zA-Z0-9\-\.]+\.[a-zA-Z]{2,3}(\S*)?(.*)"
The above trigger match seems to catch on more URLs. It still misses a few, but it's good enough for me now.