85

If I open a link sent to me on Slack, the new browser window opened shows up as 'another' Slack window. Is there any way to have it correctly group the new browser window with the existing browser windows? I'm on Ubuntu 18.04 running gnome.

3 Answers3

138

Firefox users have this workaround:

  1. In Slack, click on a web link
  2. In the new Firefox browser instance opened by Slack, go to "about:profiles"
  3. Change the profile used as default to your regular profile

Thanks to Michev for the comment on the snapd bugtracker: https://bugs.launchpad.net/snapd/+bug/1835024/comments/13

Lucas
  • 685
bltcrew
  • 1,481
41

I had the same problem, I uninstalled the app via Ubuntu Software, then downloaded the latest .deb package in https://slack.com/downloads/linux

And installed the package with sudo dpkg -i slack-desktop-*.deb

And it worked all fine

The problem seems to be with the snap packaging of slack, not the app itself.

3

After removing Slack via the Software Center, open your terminal and run:

$ wget https://downloads.slack-edge.com/linux_releases/slack-desktop-4.0.2-amd64.deb
$ sudo apt --fix-broken install ./slack-desktop-*.deb
$ sudo apt install ./slack-desktop-*.deb
0_o
  • 31