mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 22:14:58 +08:00
Guests can't send RR
so they shouldn't try lets not hit the HS quite as much
This commit is contained in:
parent
c8b0a15902
commit
da4c2f8b31
@ -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 (vector-im/riot-web#3758)
|
||||
if (!cli || cli.isGuest()) return;
|
||||
|
||||
var currentReadUpToEventId = this._getCurrentReadReceipt(true);
|
||||
var currentReadUpToEventIndex = this._indexForEventId(currentReadUpToEventId);
|
||||
|
Loading…
Reference in New Issue
Block a user