mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-27 14:59:29 +01:00
chore: Localized reply exception
This commit is contained in:
parent
f1abe5a565
commit
44a564d126
@ -3,6 +3,7 @@
|
||||
import 'dart:async';
|
||||
import 'dart:io';
|
||||
|
||||
import 'package:fluffychat/utils/localized_exception_extension.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import 'package:emoji_picker_flutter/emoji_picker_flutter.dart';
|
||||
@ -75,12 +76,13 @@ class StoryPageController extends State<StoryPage> {
|
||||
replyController.clear();
|
||||
replyFocus.unfocus();
|
||||
ScaffoldMessenger.of(context).showSnackBar(
|
||||
SnackBar(
|
||||
content: Text(L10n.of(context)!.replyHasBeenSent),
|
||||
),
|
||||
SnackBar(content: Text(L10n.of(context)!.replyHasBeenSent)),
|
||||
);
|
||||
} catch (e, s) {
|
||||
Logs().w('Unable to reply to story', e, s);
|
||||
ScaffoldMessenger.of(context).showSnackBar(
|
||||
SnackBar(content: Text(e.toLocalizedString(context))),
|
||||
);
|
||||
} finally {
|
||||
setState(() {
|
||||
replyLoading = false;
|
||||
|
Loading…
Reference in New Issue
Block a user