Actions
Bug #4983
closedEchoing link with colour and $+ identifier doesn't underline hyperlink or trigger inline images anymore
Start date:
02/24/2020
Due date:
% Done:
0%
Estimated time:
Operative System:
All
Regression:
Yes
Description
This is from a script of mine that broke in 3.8 2020/02/23.
If you do:
//echo -ag test $chr(3) $+ 4 $+ http://adiirc.com
In prior versions (including 3.8 2020/02/18), the output is an underlined hyperlink, like: test http://adiirc.com
In 2020/02/23, the link is not underlined, it does not trigger inline images if it's an image, but is still clickable as a hyperlink and the hand appears on hover.
Adding a single char (ex. ~) in front of the link will make it work:
You can also workaround the issue and restore how it worked before by moving the final $+ to immediately after the "test"
//echo -ag test $+ $chr(3) $+ 4 http://adiirc.com
Actions