chore: Localized reply exception

This commit is contained in:
Christian Pauly 2021-12-26 11:37:24 +01:00
parent f1abe5a565
commit 44a564d126
1 changed files with 5 additions and 3 deletions

View File

@ -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;