fix(webapp): show room header images.

This commit is contained in:
elweyn 2023-07-15 19:00:46 +02:00
parent b933305cad
commit 5dfdcc9bc2

View File

@ -188,10 +188,10 @@ export default {
}, },
methods: { methods: {
async fetchMessages({ room, options = {} }) { async fetchMessages({ room, options = {} }) {
if (this.selectedRoom !== room.id) { if (this.selectedRoom?.id !== room.id) {
this.messages = [] this.messages = []
this.messagePage = 0 this.messagePage = 0
this.selectedRoom = room.id this.selectedRoom = room
} }
this.messagesLoaded = options.refetch ? this.messagesLoaded : false this.messagesLoaded = options.refetch ? this.messagesLoaded : false
const offset = (options.refetch ? 0 : this.messagePage) * this.messagePageSize const offset = (options.refetch ? 0 : this.messagePage) * this.messagePageSize