diff --git a/lib/pangea/controllers/language_controller.dart b/lib/pangea/controllers/language_controller.dart index ed1483aa4..2846acd91 100644 --- a/lib/pangea/controllers/language_controller.dart +++ b/lib/pangea/controllers/language_controller.dart @@ -36,7 +36,7 @@ class LanguageController { String? get _userL1Code { final source = _pangeaController.userController.profile.userSettings.sourceLanguage; - return source == null || source.isEmpty ? null : source; + return source == null || source.isEmpty ? systemLanguage.langCode : source; } String? get _userL2Code {