forked from zelo72/mastodon-ios
fix: delete relationship missing for Status issue
This commit is contained in:
parent
0cda0a58ff
commit
a9cce7b3e3
|
@ -117,6 +117,14 @@ extension APIService {
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
if let status = oldStatus {
|
if let status = oldStatus {
|
||||||
|
let homeTimelineIndexes = status.homeTimelineIndexes ?? Set()
|
||||||
|
for homeTimelineIndex in homeTimelineIndexes {
|
||||||
|
self.backgroundManagedObjectContext.delete(homeTimelineIndex)
|
||||||
|
}
|
||||||
|
let inNotifications = status.inNotifications ?? Set()
|
||||||
|
for notification in inNotifications {
|
||||||
|
self.backgroundManagedObjectContext.delete(notification)
|
||||||
|
}
|
||||||
self.backgroundManagedObjectContext.delete(status)
|
self.backgroundManagedObjectContext.delete(status)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue