1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 06:53:23 +00:00

Fix bad check

This commit is contained in:
Pierre HUBERT 2020-05-09 12:41:15 +02:00
parent 67c217715a
commit 32aa73a951

View File

@ -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"),
);