Similar behaviour to
JILS-19, but this time caused by
JILS-25.
The hyperlink used within the commit notifications is being autolinked, and the commit notification markup processing is then turning that into a link.
Needs a rounder solution, but the quick fix is to drop a negative lookback into the regex to ensure it's not converted if the link is prefixed with a pipe symbol (|)
Something like
(?<!\|)
Should do it, though will need testing
Activity
2014-11-12 01:45:26
Webhook User-Agent
View Commit
2014-11-12 01:47:06
The problem with trying to keep the regular expressions simple is that we're going to hit issues like this too regularly, but given the choice between unmaintainable regex and occasionally breaking links, I think I prefer the latter.
2014-11-12 01:47:22
2014-11-12 01:47:22
2016-04-24 18:27:04
2016-04-29 15:18:19
2016-04-29 15:18:19
2018-01-05 08:40:59
2018-01-05 08:40:59
2018-01-05 08:41:02