mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-20 02:59:26 +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 {
|
void replyAction([String? message]) async {
|
||||||
message ??= replyController.text;
|
message ??= replyController.text;
|
||||||
|
if (message.isEmpty) return;
|
||||||
final currentEvent = this.currentEvent;
|
final currentEvent = this.currentEvent;
|
||||||
if (currentEvent == null) return;
|
if (currentEvent == null) return;
|
||||||
setState(() {
|
setState(() {
|
||||||
|
Loading…
Reference in New Issue
Block a user