fix: undo reblog status not remove from timeline issue
This commit is contained in:
parent
71e2f46ede
commit
e77c5c4e78
@ -104,7 +104,17 @@ extension APIService {
|
||||
APIService.CoreData.merge(status: oldStatus, entity: entity.reblog ?? entity, requestMastodonUser: requestMastodonUser, domain: mastodonAuthenticationBox.domain, networkDate: response.networkDate)
|
||||
switch reblogKind {
|
||||
case .undoReblog:
|
||||
// update reblogged status
|
||||
oldStatus.update(reblogsCount: NSNumber(value: max(0, oldStatus.reblogsCount.intValue - 1)))
|
||||
|
||||
// remove reblog from statuses
|
||||
let reblogFroms = oldStatus.reblogFrom?.filter { status in
|
||||
return status.author.domain == domain && status.author.id == requestMastodonUserID
|
||||
} ?? Set()
|
||||
reblogFroms.forEach { reblogFrom in
|
||||
managedObjectContext.delete(reblogFrom)
|
||||
}
|
||||
|
||||
default:
|
||||
break
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user