mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-04 19:19:29 +01:00
fix: Reply on stories with empty string
This commit is contained in:
parent
24ea7daccf
commit
7cb01bce07
@ -67,6 +67,7 @@ class StoryPageController extends State<StoryPage> {
|
||||
|
||||
void replyAction([String? message]) async {
|
||||
message ??= replyController.text;
|
||||
if (message.isEmpty) return;
|
||||
final currentEvent = this.currentEvent;
|
||||
if (currentEvent == null) return;
|
||||
setState(() {
|
||||
|
Loading…
Reference in New Issue
Block a user