File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed
sample_app/lib/screens/user_feed Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -64,19 +64,19 @@ class _UserFeedScreenState extends State<UserFeedScreen> {
6464 _followSelfIfNeeded (timelineFeed, FeedId .user (client.user.id));
6565 });
6666 notificationFeed.getOrCreate ();
67- // storiesFeed.getOrCreate().then((value) {
68- // _followSelfIfNeeded(storiesFeed, FeedId.story(client.user.id));
69- // });
67+ storiesFeed.getOrCreate ().then ((value) {
68+ _followSelfIfNeeded (storiesFeed, FeedId .story (client.user.id));
69+ });
7070
7171 // need to make sure story feed is created, but we don't use it directly.
72- // client
73- // .feedFromQuery(
74- // FeedQuery(
75- // fid: FeedId.story(client.user.id),
76- // watch: false,
77- // ),
78- // )
79- // .getOrCreate();
72+ client
73+ .feedFromQuery (
74+ FeedQuery (
75+ fid: FeedId .story (client.user.id),
76+ watch: false ,
77+ ),
78+ )
79+ .getOrCreate ();
8080 }
8181
8282 @override
You can’t perform that action at this time.
0 commit comments