Merge pull request #860 from t3chguy/patch-4

Guests can't send RR so no point trying
pull/21833/head
Luke Barnard 2017-05-04 17:53:59 +01:00 committed by GitHub
commit 8e3851b380
1 changed files with 3 additions and 1 deletions

View File

@ -503,7 +503,9 @@ var TimelinePanel = React.createClass({
// This happens on user_activity_end which is delayed, and it's
// very possible have logged out within that timeframe, so check
// we still have a client.
if (!MatrixClientPeg.get()) return;
const cli = MatrixClientPeg.get();
// if no client or client is guest don't send RR
if (!cli || cli.isGuest()) return;
var currentReadUpToEventId = this._getCurrentReadReceipt(true);
var currentReadUpToEventIndex = this._indexForEventId(currentReadUpToEventId);