File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 11## unreleased
22- Update follower and following counts on the feed state when receiving follow websocket events.
33- Fix FeedsReactionData id for updating reactions in the feed state.
4+ - Improve feed and activity state updates for websocket events.
45
56## 0.3.1
67- Update API client with renaming ` addReaction ` to ` addActivityReaction ` and ` deleteReaction ` to ` deleteActivityReaction ` .
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ class ActivityEventHandler implements StateEventHandler {
3535
3636 @override
3737 Future <void > handleEvent (WsEvent event) async {
38- if (await _partialActivityEventHandler.handleEvent (event)) return ;
38+ if (await _partialActivityEventHandler.handleEvent (event)) return ;
3939 if (event is api.PollClosedFeedEvent ) {
4040 return state.onPollClosed (event.poll.toModel ());
4141 }
You can’t perform that action at this time.
0 commit comments