@ -23,7 +23,7 @@ internal extension SessionUtil {
guard conf != nil else { throw SessionUtilError . nilConfigObject }
// G e t t h e v o l a t i l e t h r e a d i n f o f r o m t h e c o n f a n d l o c a l c o n v e r s a t i o n s
let volatileThreadInfo : [ VolatileThreadInfo ] = extractConvoVolatileInfo ( from : conf )
let volatileThreadInfo : [ VolatileThreadInfo ] = try extractConvoVolatileInfo ( from : conf )
let localVolatileThreadInfo : [ String : VolatileThreadInfo ] = VolatileThreadInfo . fetchAll ( db )
. reduce ( into : [ : ] ) { result , next in result [ next . threadId ] = next }
@ -314,10 +314,7 @@ public extension SessionUtil {
openGroup : OpenGroup ?
) -> Bool {
return SessionUtil
. config (
for : . convoInfoVolatile ,
publicKey : userPublicKey
)
. config ( for : . convoInfoVolatile , publicKey : userPublicKey )
. wrappedValue
. map { conf in
switch threadVariant {
@ -512,7 +509,8 @@ public extension SessionUtil {
internal static func extractConvoVolatileInfo (
from conf : UnsafeMutablePointer < config_object > ?
) -> [ VolatileThreadInfo ] {
) throws -> [ VolatileThreadInfo ] {
var infiniteLoopGuard : Int = 0
var result : [ VolatileThreadInfo ] = [ ]
var oneToOne : convo_info_volatile_1to1 = convo_info_volatile_1to1 ( )
var community : convo_info_volatile_community = convo_info_volatile_community ( )
@ -520,6 +518,8 @@ public extension SessionUtil {
let convoIterator : OpaquePointer = convo_info_volatile_iterator_new ( conf )
while ! convo_info_volatile_iterator_done ( convoIterator ) {
try SessionUtil . checkLoopLimitReached ( & infiniteLoopGuard , for : . convoInfoVolatile )
if convo_info_volatile_it_is_1to1 ( convoIterator , & oneToOne ) {
result . append (
VolatileThreadInfo (