https://bugs.kde.org/show_bug.cgi?id=451018

Michael Mikowski <z_mikow...@yahoo.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |z_mikow...@yahoo.com

--- Comment #3 from Michael Mikowski <z_mikow...@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 watching all bug changes.

Reply via email to