<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Join on Details...</title>
    <link>https://www.deepreflect.net/tags/join/</link>
    <description>Recent content in Join on Details...</description>
    <generator>Hugo</generator>
    <language>en-US</language>
    <copyright>Copyright © 2003 - 2026 Leonardo Rizzi</copyright>
    <lastBuildDate>Tue, 30 Jun 2026 03:28:29 +0200</lastBuildDate>
    <atom:link href="https://www.deepreflect.net/tags/join/feed.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Microsoft Teams and Join Link problem</title>
      <link>https://www.deepreflect.net/2021/03/13/microsoft-teams-and-join-link-problem/</link>
      <pubDate>Sat, 13 Mar 2021 18:43:18 +0000</pubDate>
       <guid isPermaLink="false">https://www.deepreflect.net/?p=1849</guid> 
      <description>&lt;p&gt;I&amp;rsquo;ve recently upgraded Microsft Teams to version 1.4.00.4855 (I run it on openSUSE Linux but I think this problem can be related to the rpm build and maybe even the deb) basically the external Join Invite by URL stopped working.&lt;/p&gt;
&lt;p&gt;Digging around in the browser the content-type: &lt;code&gt;&amp;quot;msteams&amp;quot;&lt;/code&gt; it&amp;rsquo;s opened by the lanucher &lt;code&gt;&amp;quot;/usr/bin/teams&amp;quot;&lt;/code&gt; luckily it&amp;rsquo;s a simple shell script, apparently they added some switch messing up the URL variable.&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>I&rsquo;ve recently upgraded Microsft Teams to version 1.4.00.4855 (I run it on openSUSE Linux but I think this problem can be related to the rpm build and maybe even the deb) basically the external Join Invite by URL stopped working.</p>
<p>Digging around in the browser the content-type: <code>&quot;msteams&quot;</code> it&rsquo;s opened by the lanucher <code>&quot;/usr/bin/teams&quot;</code> luckily it&rsquo;s a simple shell script, apparently they added some switch messing up the URL variable.</p>
<p>Following the explanation, I&rsquo;ve just downloaded the rpm and unpacked it:</p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"><code class="language-fallback" data-lang="fallback"><span style="display:flex;"><span>https://packages.microsoft.com/yumrepos/ms-teams/teams-1.3.00.958-1.x86_64.rpm
</span></span><span style="display:flex;"><span>https://packages.microsoft.com/yumrepos/ms-teams/teams-1.4.00.4855-1.x86_64.rpm
</span></span><span style="display:flex;"><span>rpm2cpio teams-xxxx.x86_64.rpm | cpio -idmv
</span></span></code></pre></div><p>And then do some diff:</p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"><code class="language-fallback" data-lang="fallback"><span style="display:flex;"><span>leo@thinkleo5:~/dev/teams&gt; diff 1.3/usr/bin/teams 1.4/usr/bin/teams
</span></span><span style="display:flex;"><span>11c11
</span></span><span style="display:flex;"><span>&lt; nohup &#34;$TEAMS_PATH&#34; &#34;$@&#34; &gt; &#34;$TEAMS_LOGS/teams-startup.log&#34; 2&gt;&amp;1 &amp;
</span></span><span style="display:flex;"><span>---
</span></span><span style="display:flex;"><span>&gt; nohup &#34;$TEAMS_PATH&#34; --disable-namespace-sandbox --disable-setuid-sandbox &#34;$@&#34; &gt; &#34;$TEAMS_LOGS/teams-startup.log&#34; 2&gt;&amp;1 &amp;
</span></span><span style="display:flex;"><span>leo@thinkleo5:~/dev/teams&gt; 
</span></span></code></pre></div><p>Teams still run but the URL joins are ignored, you can fix editing the <code>&quot;/usr/bin/teams&quot;</code> the line 11 of the launcher.</p>
<p>From:</p>
<p><code>nohup &quot;$TEAMS_PATH&quot; --disable-namespace-sandbox --disable-setuid-sandbox &quot;$@&quot; &gt; &quot;$TEAMS_LOGS/teams-startup.log&quot; 2&gt;&amp;1 &amp;</code></p>
<p>To:</p>
<p><code>nohup &quot;$TEAMS_PATH&quot; &quot;$@&quot; --disable-namespace-sandbox --disable-setuid-sandbox &gt; &quot;$TEAMS_LOGS/teams-startup.log&quot; 2&gt;&amp;1 &amp;</code></p>
]]></content:encoded>
    </item>
  </channel>
</rss>
