Fix messageeventmodel message role

Change remaining messageeventmodel message role to plainText
This commit is contained in:
James Graham
2023-04-27 17:38:42 +00:00
parent 4b879be4ea
commit 9f15c7fc53
2 changed files with 4 additions and 4 deletions

View File

@@ -58,13 +58,13 @@ Components.AlbumMaximizeComponent {
onItemRightClicked: {
const contextMenu = fileDelegateContextMenu.createObject(parent, {
author: modelData.author,
message: modelData.message,
message: modelData.plainText,
eventId: modelData.eventId,
source: modelData.source,
file: parent,
mimeType: modelData.mimeType,
progressInfo: modelData.progressInfo,
plainMessage: modelData.message,
plainMessage: modelData.plainText,
});
contextMenu.closeFullscreen.connect(root.close)
contextMenu.open();