We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aacaba6 commit e19e361Copy full SHA for e19e361
packages/stream_chat/CHANGELOG.md
@@ -3,6 +3,10 @@
3
✅ Added
4
- Added user blocking to the client.
5
6
+🐞 Fixed
7
+
8
+- Fixed locale conversion in jiffy.
9
10
## 8.1.0
11
12
packages/stream_chat_flutter/lib/src/stream_chat.dart
@@ -164,7 +164,8 @@ class StreamChatState extends State<StreamChat> {
164
165
@override
166
void didChangeDependencies() {
167
- final currentLocale = Localizations.localeOf(context).toString();
+ final currentLocale =
168
+ Localizations.localeOf(context).toString().toLowerCase();
169
final availableLocales = Jiffy.getSupportedLocales();
170
if (availableLocales.contains(currentLocale)) {
171
Jiffy.setLocale(currentLocale);
0 commit comments