You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found another issue under Ubuntu (Linux) that is causing the output of color codes like [0[38;5;144m in the output. This is caused by echo $ESC."[0\n"; in line 113 in Matrix.php.
Switching to echo "n"; solved the issue for me.
Original version:
Fixed version:
The text was updated successfully, but these errors were encountered:
Hello,
I found another issue under Ubuntu (Linux) that is causing the output of color codes like
[0[38;5;144m
in the output. This is caused byecho $ESC."[0\n";
in line 113 in Matrix.php.Switching to
echo "n";
solved the issue for me.Original version:

Fixed version:

The text was updated successfully, but these errors were encountered: