mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-29 19:51:08 +00:00
Fix an empty dialog would appear if the selected language was empty (#873)
Co-authored-by: Yusuke Arakawa <nekolaboratory@users.noreply.github.com>
This commit is contained in:
parent
4fc00ea447
commit
c09543b9de
1 changed files with 1 additions and 0 deletions
|
@ -145,6 +145,7 @@ public class StatusEditorViewModel: NSObject, ObservableObject {
|
||||||
func evaluateLanguages() {
|
func evaluateLanguages() {
|
||||||
if let detectedLang = detectLanguage(text: statusText.string),
|
if let detectedLang = detectLanguage(text: statusText.string),
|
||||||
let selectedLanguage = selectedLanguage,
|
let selectedLanguage = selectedLanguage,
|
||||||
|
selectedLanguage != "",
|
||||||
selectedLanguage != detectedLang
|
selectedLanguage != detectedLang
|
||||||
{
|
{
|
||||||
languageConfirmationDialogLanguages = ["detected": detectedLang,
|
languageConfirmationDialogLanguages = ["detected": detectedLang,
|
||||||
|
|
Loading…
Reference in a new issue