2
2
mirror of https://github.com/mastodon/mastodon-ios synced 2025-04-11 22:58:02 +02:00

Don't download edit-history (#1138)

It was needed in the past when `editHistory` also persisted the history in CoreData. But as we don't use CoreData anymore...
This commit is contained in:
Nathan Mattes 2024-01-23 10:31:05 +01:00
parent 08a932ddfc
commit f9ae531b48

View File

@ -50,13 +50,6 @@ extension APIService {
domain: domain,
authorization: authorization).singleOutput()
_ = try await Mastodon.API.Statuses.editHistory(
forStatusID: statusID,
session: session,
domain: domain,
authorization: authorization
).singleOutput()
return response
}
}