core: fix GHC 8.10.7 (#6248)

This commit is contained in:
Evgeny
2025-09-07 22:20:27 +01:00
committed by GitHub
parent 634fe96db6
commit 5ebd8cc193
2 changed files with 2 additions and 1 deletions

View File

@@ -534,7 +534,7 @@ processChatCommand vr nm = \case
Just newMemAttention -> do
(gInfo', scopeMem') <-
withFastStore' $ \db -> setSupportChatMemberAttention db vr user gInfo scopeMem newMemAttention
pure $ groupChat {chatInfo = GroupChat gInfo' (Just $ GCSIMemberSupport (Just scopeMem'))}
pure (groupChat {chatInfo = GroupChat gInfo' (Just $ GCSIMemberSupport (Just scopeMem'))} :: Chat 'CTGroup)
Nothing -> pure groupChat
_ -> pure groupChat
where

View File

@@ -533,6 +533,7 @@ smpServerCfg =
dailyBlockQueueQuota = 20,
messageExpiration = Just defaultMessageExpiration,
expireMessagesOnStart = False,
expireMessagesOnSend = False,
idleQueueInterval = defaultIdleQueueInterval,
notificationExpiration = defaultNtfExpiration,
inactiveClientExpiration = Just defaultInactiveClientExpiration,