From ba1604289ea0e50a5ed3048124e39e4e0e4a2781 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20P=C3=A9rez=20P=C3=A9rez?= Date: Wed, 22 Oct 2025 13:01:21 +0200 Subject: [PATCH] Revert currentKeyboardLanguage change in emoji selector --- Telegram-Mac/InputSources.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram-Mac/InputSources.swift b/Telegram-Mac/InputSources.swift index f48316356f..6b04ce2923 100644 --- a/Telegram-Mac/InputSources.swift +++ b/Telegram-Mac/InputSources.swift @@ -19,7 +19,7 @@ final class InputSources: NSObject { var value: Signal<[String], NoError> { _inputSource.set(Signal { subscriber in - subscriber.putNext([currentKeyboardLanguage()]) + subscriber.putNext(currentAppInputSource().uniqueElements) subscriber.putCompletion() return EmptyDisposable } |> runOn(.mainQueue()))