mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2024-12-17 17:20:21 +01:00
core: clear group content on deletion, break transaction to prevent error on Android, more logs (#892)
* core: log group deletion * clear group content, break transaction, add logs
This commit is contained in:
committed by
GitHub
parent
91baf9f362
commit
55adbb4692
@@ -11,3 +11,7 @@ safeDecodeUtf8 = decodeUtf8With onError
|
||||
|
||||
uncurry3 :: (a -> b -> c -> d) -> ((a, b, c) -> d)
|
||||
uncurry3 f ~(a, b, c) = f a b c
|
||||
|
||||
lastMaybe :: [a] -> Maybe a
|
||||
lastMaybe [] = Nothing
|
||||
lastMaybe xs = Just $ last xs
|
||||
|
||||
Reference in New Issue
Block a user