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()))