Build error and redundant variable removal

pull/894/head
Morgan Pretty 3 months ago
parent 16addb3b91
commit bcbe7ec11c

@ -506,11 +506,8 @@ extension LibSession.Config {
}
}
public func isAdmin(groupSessionId: SessionId) -> Bool {
guard
groupSessionId.prefix == .group,
case .groupKeys(let conf, _, _) = self
else { return false }
public func isAdmin() -> Bool {
guard case .groupKeys(let conf, _, _) = self else { return false }
return groups_keys_is_admin(conf)
}

@ -864,7 +864,7 @@ public extension LibSession {
return false
}
return config.isAdmin(groupSessionId: groupSessionId)
return config.isAdmin()
}
}
}

@ -378,7 +378,7 @@ open class Storage {
// Note: The non-async migration should only be used for unit tests
guard async else { return migrationCompleted(Result(catching: { try migrator.migrate(dbWriter) })) }
migrator.asyncMigrate(dbWriter) { result in
migrator.asyncMigrate(dbWriter) { [dependencies] result in
let finalResult: Result<Void, Error> = {
switch result {
case .failure(let error): return .failure(error)

Loading…
Cancel
Save