Don't attempt to send read receipts for guest accounts
This commit is contained in:
parent
8144e66d00
commit
fd749ecc2b
1 changed files with 4 additions and 2 deletions
|
@ -131,8 +131,10 @@ export class HomeServerApi {
|
|||
}
|
||||
|
||||
receipt(roomId, receiptType, eventId, options = null) {
|
||||
return this._post(`/rooms/${encodeURIComponent(roomId)}/receipt/${encodeURIComponent(receiptType)}/${encodeURIComponent(eventId)}`,
|
||||
{}, {}, options);
|
||||
if(!this._isGuestAccount()) {
|
||||
return this._post(`/rooms/${encodeURIComponent(roomId)}/receipt/${encodeURIComponent(receiptType)}/${encodeURIComponent(eventId)}`,
|
||||
{}, {}, options);
|
||||
}
|
||||
}
|
||||
|
||||
passwordLogin(username, password, initialDeviceDisplayName, options = null) {
|
||||
|
|
Reference in a new issue