We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2ef892 commit f2e05b8Copy full SHA for f2e05b8
packages/stream_feeds/lib/src/models/activity_data.dart
@@ -332,6 +332,10 @@ extension ActivityDataMutations on ActivityData {
332
ownBookmarks: ownBookmarks ?? this.ownBookmarks,
333
ownReactions: ownReactions ?? this.ownReactions,
334
poll: updated.poll?.let((it) => poll?.updateWith(it) ?? it),
335
+ currentFeed: updated.currentFeed == null
336
+ ? currentFeed
337
+ : currentFeed?.updateWith(updated.currentFeed!) ??
338
+ updated.currentFeed,
339
);
340
}
341
0 commit comments