mirror of
				https://gitlab.com/comunic/comunicmobile
				synced 2025-11-04 04:04:18 +00:00 
			
		
		
		
	Fix issue that prevented to update content of empty posts
This commit is contained in:
		@@ -570,7 +570,7 @@ class _PostTileState extends State<PostTile> {
 | 
				
			|||||||
      context: context,
 | 
					      context: context,
 | 
				
			||||||
      title: tr("Update post content"),
 | 
					      title: tr("Update post content"),
 | 
				
			||||||
      message: tr("Please enter message content: "),
 | 
					      message: tr("Please enter message content: "),
 | 
				
			||||||
      defaultValue: widget.post.content,
 | 
					      defaultValue: widget.post.content == null ? "" : widget.post.content,
 | 
				
			||||||
      hint: tr("Post content"),
 | 
					      hint: tr("Post content"),
 | 
				
			||||||
    );
 | 
					    );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user