mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-25 12:38:48 +03:00
Fix decryption errors in reply popups
This commit is contained in:
parent
79f245986b
commit
42fdbec43a
2 changed files with 2 additions and 0 deletions
|
@ -68,6 +68,7 @@ Popup {
|
||||||
isOnlyEmoji: modelData.isOnlyEmoji ?? false
|
isOnlyEmoji: modelData.isOnlyEmoji ?? false
|
||||||
userId: modelData.userId ?? ""
|
userId: modelData.userId ?? ""
|
||||||
userName: modelData.userName ?? ""
|
userName: modelData.userName ?? ""
|
||||||
|
encryptionError: modelData.encryptionError ?? ""
|
||||||
}
|
}
|
||||||
|
|
||||||
MatrixTextField {
|
MatrixTextField {
|
||||||
|
|
|
@ -45,6 +45,7 @@ Rectangle {
|
||||||
isOnlyEmoji: modelData.isOnlyEmoji ?? false
|
isOnlyEmoji: modelData.isOnlyEmoji ?? false
|
||||||
userId: modelData.userId ?? ""
|
userId: modelData.userId ?? ""
|
||||||
userName: modelData.userName ?? ""
|
userName: modelData.userName ?? ""
|
||||||
|
encryptionError: modelData.encryptionError ?? ""
|
||||||
}
|
}
|
||||||
|
|
||||||
ImageButton {
|
ImageButton {
|
||||||
|
|
Loading…
Reference in a new issue