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

Fix issue that prevented to update content of empty posts

This commit is contained in:
Pierre HUBERT 2019-07-01 12:08:10 +02:00
parent 73a94f5358
commit cf342367b6

View File

@ -570,7 +570,7 @@ class _PostTileState extends State<PostTile> {
context: context,
title: tr("Update post content"),
message: tr("Please enter message content: "),
defaultValue: widget.post.content,
defaultValue: widget.post.content == null ? "" : widget.post.content,
hint: tr("Post content"),
);