From b9d60752bd3584a05593056cc32dc2ebcab47847 Mon Sep 17 00:00:00 2001 From: Ilya Laktyushin Date: Wed, 12 Dec 2018 00:21:14 +0400 Subject: [PATCH] Fix --- TelegramUI/ChatRecentActionsControllerNode.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TelegramUI/ChatRecentActionsControllerNode.swift b/TelegramUI/ChatRecentActionsControllerNode.swift index edb4dbf2f4..d697a30e07 100644 --- a/TelegramUI/ChatRecentActionsControllerNode.swift +++ b/TelegramUI/ChatRecentActionsControllerNode.swift @@ -431,7 +431,7 @@ final class ChatRecentActionsControllerNode: ViewControllerTracingNode { let previousTheme = strongSelf.presentationData.theme strongSelf.presentationData = presentationData - strongSelf.chatPresentationDataPromise.set(.single(ChatPresentationData(theme: ChatPresentationThemeData(theme: presentationData.theme, wallpaper: presentationData.chatWallpaper), fontSize: presentationData.fontSize, strings: presentationData.strings, dateTimeFormat: presentationData.dateTimeFormat, disableAnimations: presentationData.disableAnimations))) + strongSelf.chatPresentationDataPromise.set(.single(ChatPresentationData(theme: ChatPresentationThemeData(theme: presentationData.theme, wallpaper: presentationData.chatWallpaper), fontSize: presentationData.fontSize, strings: presentationData.strings, dateTimeFormat: presentationData.dateTimeFormat, nameDisplayOrder: presentationData.nameDisplayOrder, disableAnimations: presentationData.disableAnimations))) strongSelf.updateThemeAndStrings(theme: presentationData.theme, strings: presentationData.strings) }