Fix small bug in like counters

This commit is contained in:
William Casarin
2023-05-03 06:36:42 -07:00
parent 80ea37a102
commit 3b541f2ec1

View File

@@ -277,8 +277,8 @@ class HomeModel: ObservableObject {
case .success(let n):
handle_notification(ev: ev)
let liked = Counted(event: ev, id: e.ref_id, total: n)
//notify(.liked, liked)
//notify(.update_stats, e.ref_id)
notify(.liked, liked)
notify(.update_stats, e.ref_id)
}
}