mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 12:59:21 +00:00
Fix bad check
This commit is contained in:
parent
67c217715a
commit
32aa73a951
@ -566,7 +566,7 @@ class _PostTileState extends State<PostTile> {
|
||||
title: tr("Update post content"),
|
||||
message: tr("Please enter message content: "),
|
||||
defaultValue:
|
||||
widget.post.content.isNull == null ? "" : widget.post.content.content,
|
||||
widget.post.content.isNull ? "" : widget.post.content.content,
|
||||
hint: tr("Post content"),
|
||||
);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user