[kde] [Bug 451018] Slack users on KDE Plasma unable to open workspace in desktop app via Chromium based browsers
Michael Mikowski
bugzilla_noreply at kde.org
Tue Nov 15 22:12:50 GMT 2022
https://bugs.kde.org/show_bug.cgi?id=451018
Michael Mikowski <z_mikowski at yahoo.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |z_mikowski at yahoo.com
--- Comment #3 from Michael Mikowski <z_mikowski at yahoo.com> ---
(In reply to Nate Graham from comment #2)
> I agree with Nicolas (amazing investigation, BTW!). Slack itself should be
> fixed here. If not, trying a Qt fix would be the better option that changing
> openUrlJob and everything that uses it.
Here is a work-around. Drop it in /usr/local/bin/xdg-open so it gets opened
first. You will need to make it executable.
#!/bin/bash
# Wrapper for xdg-open which fixes auth for Slack URLs
#
if [[ "${1:-}" =~ ^slack:// ]]; then
exec /usr/lib/slack/slack "$@";
fi
exec /usr/bin/xdg-open "$@";
--
You are receiving this mail because:
You are the assignee for the bug.
More information about the Unassigned-bugs
mailing list