mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 00:08:21 +00:00
Revert "Feed calculation logic change"
This reverts commit 2624b7dd0e07674f3639fb18618a5e11b3e9f53f.
This commit is contained in:
parent
4c0fae19ee
commit
4acf9284f4
@ -130,12 +130,10 @@ final class FeedModel: ObservableObject, CacheModel {
|
||||
}
|
||||
|
||||
let byChannel = Dictionary(grouping: unwatched) { $0.channel.id }.mapValues(\.count)
|
||||
if self.unwatchedByChannel[account] != byChannel {
|
||||
self.unwatchedByChannel[account] = byChannel
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func markAllFeedAsWatched() {
|
||||
guard let account = accounts.current, accounts.signedIn else { return }
|
||||
|
@ -107,6 +107,8 @@ extension PlayerModel {
|
||||
self.context.delete(watch)
|
||||
|
||||
try? self.context.save()
|
||||
|
||||
FeedModel.shared.calculateUnwatchedFeed()
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -42,6 +42,8 @@ struct WatchView: View {
|
||||
} else {
|
||||
Watch.markAsWatched(videoID: watch?.videoID ?? videoID, account: AccountsModel.shared.current, duration: watch?.videoDuration ?? duration, context: backgroundContext)
|
||||
}
|
||||
|
||||
FeedModel.shared.calculateUnwatchedFeed()
|
||||
}
|
||||
|
||||
var imageSystemName: String {
|
||||
|
Loading…
Reference in New Issue
Block a user