Skip to content

Commit 776ce3b

Browse files
committed
fix flows cache
1 parent 7bf8a2e commit 776ce3b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/pages/article/article.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ class _ArticlePageState extends State<ArticlePage> {
170170
final preview = PostPreview(
171171
id: articleId,
172172
title: post.title,
173-
hubs: [],
173+
flows: [],
174174
publishDate: post.publishDate,
175175
statistics: Models.Statistics.zero(),
176176
author: post.author,

lib/stores/habr_storage.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ class HabrStorage {
114114

115115
return PostPreview(
116116
id: post.id,
117-
hubs: [],
117+
flows: [],
118118
title: post.title,
119119
publishDate: post.publishDate,
120120
statistics: Statistics.zero(),

0 commit comments

Comments
 (0)