Comment 29 for bug 1776873

Revision history for this message
Kevin Funk (kfunk) wrote :

Okay, after having manually copied and dissected a Zoom URL for the Xth time I finally got annoyed.

I've updated the instructions from comment #27, here's a possible work-around by rebuilding the snapd sources:

```
apt-get build-dep snapd
TMPDIR=$(mktemp -d)
cd $TMPDIR
apt-get -y source snapd
sed -i 's/"http", "https", "mailto", "snap", "help"/"http", "https", "mailto", "snap", "help", "apt", "zoommtg", "slack"/' snapd-*/usersession/userd/launcher.go
cd snapd-* && dch -l$(hostname) fix_missing_app_types
cd ..
cd snapd-* && DEB_BUILD_OPTIONS=nocheck debuild -b -uc -us
cd ..
sudo dpkg -i snapd_*.deb
sudo service snapd restart
killall snap
```

Restart the client app. After that opening Zoom URLs in Chromium just works for me. What a relief.