wip
This commit is contained in:
parent
ae767456dd
commit
edfc3785e9
|
@ -4,7 +4,7 @@ import SwiftUI
|
|||
@main
|
||||
struct AnotherIMApp: App {
|
||||
@UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate
|
||||
@StateObject var wrapper = WrapperXMPP()
|
||||
let wrapper = WrapperXMPP()
|
||||
|
||||
init() {
|
||||
// DDLog.add(DDOSLogger.sharedInstance, with: .all)
|
||||
|
|
|
@ -28,7 +28,7 @@ struct Message: Identifiable {
|
|||
init?(_ obj: MLMessage) {
|
||||
guard let accId = obj.accountID as? Int, let dbId = obj.messageDBId as? Int else { return nil }
|
||||
accountId = accId
|
||||
participantJid = obj.participantJid
|
||||
participantJid = obj.actualFrom
|
||||
self.dbId = dbId
|
||||
messageId = obj.messageId
|
||||
stanzaId = obj.stanzaId
|
||||
|
|
Loading…
Reference in a new issue