Bug - Fixed Linux relay browser launching broken

nworbetan

Member
Sorry, that was with r11604.Incidentally, I just switched from Xubuntu to Fedora a couple weeks ago, and this build of Chromium apparently won't let me edit posts, and Reply With Quote doesn't look like I can use it either. Also, the "less than command greater than" I put between colons disappeared completely, and the advanced editor looks like it's MIA too.Maybe it's time to give Firefox another try, it's been a while.
 
I'll go ahead and go with the recommendation to rollback 11598, but I'm not convinced that everything won't just quietly fail again. That being said, to see what's going on with loading the default browser via fallback methods, can you go ahead and enter the following commands into your terminal?

Code:
xdg-open http://www.google.com/
exo-open http://www.google.com/
gnome-open http://www.google.com/
gvfs-open http://www.google.com/
sensible-browser http://www.google.com/
open http://www.google.com/
firefox http://www.google.com/
netscape http://www.google.com/
Results:
Code:
miniwrld@kubuntu:~$ xdg-open http://www.google.com
(Chromium opens, displaying Google)
miniwrld@kubuntu:~$ exo-open http://www.google.com
The program 'exo-open' is currently not installed. You can install it by typing:
sudo apt-get install exo-utils
miniwrld@kubuntu:~$ gnome-open http://www.google.com
Error showing url: The specified location is not supported
miniwrld@kubuntu:~$ gvfs-open http://www.google.com
The program 'gvfs-open' is currently not installed. You can install it by typing:
sudo apt-get install gvfs-bin
miniwrld@kubuntu:~$ sensible-browser http://www.google.com
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
(rekonq opens, displaying Google)
miniwrld@kubuntu:~$ open http://www.google.com
Couldn't get a file descriptor referring to the console
miniwrld@kubuntu:~$ firefox http://www.google.com
The program 'firefox' is currently not installed. You can install it by typing:
sudo apt-get install firefox
miniwrld@kubuntu:~$ netscape http://www.google.com
netscape: command not found
Stuff in (parentheses) are my comments.

EDIT: r11604 fixed the issue I was having. :D
 
Last edited:

holatuwol

Developer
EDIT: r11604 fixed the issue I was having. :D
Awesome, looks like switching the order on xdg-open and sensible-browser made things work the way you expected them to, or the original logic which used to return false for the AWT browser and forcing the fallback logic is now magically working and returning true. Either way, I'll mark this as fixed. :)
 
Last edited:
Top