Thursday, May 26, 2022

[SOLVED] Konsole not getting the full url when is a port (:) on it (on click)

Issue

Normally I use to do something like this when using express applications(Or any other type of application that involves a URL):

app.listen(7070, () => console.log('Server started at port http://127.0.0.1:7070')

But when I click on the URL my browser opens https://127.0.0.1 instead of http://127.0.0.1:7070. I remember that this was not the way it used to work, but not entirely sure.

I am using Konsole(v22.04.1) over fish(v.3.4.1) (Fish does not seem important, as it is reproducible with bash and not with alacritty).

Sample Image

As you can see, the : prevents the entire URL from being selected. Does anyone know of a way to change this behavior, and have the entire URL selected?


Solution

Looks like a known issue with 22.04.

I was able to reproduce on Arch (using Windows Subsystem for Linux) with 22.04.01, but it works fine on Ubuntu 22.04 LTS (also under WSL) which currently uses Konsole 21.12.3.



Answered By - NotTheDr01ds
Answer Checked By - David Goodson (WPSolving Volunteer)