diff --git a/CHANGELOG.md b/CHANGELOG.md index 95d21ac05..b819cd27f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,8 @@ ChangeLog unreleased ---------- -* 投稿ページに次の投稿/前の投稿リンクを作成 (#734) +* Improvement: 投稿ページに次の投稿/前の投稿リンクを作成 (#734) +* Fix: モバイル版でおすすめユーザーをフォローしてもタイムラインが更新されない (#736) 2380 ---- diff --git a/src/web/app/mobile/tags/home-timeline.tag b/src/web/app/mobile/tags/home-timeline.tag index 5d5399f32..7357d1391 100644 --- a/src/web/app/mobile/tags/home-timeline.tag +++ b/src/web/app/mobile/tags/home-timeline.tag @@ -23,6 +23,12 @@ }); }); + this.fetch = () => { + this.api('posts/timeline').then(posts => { + this.refs.timeline.setPosts(posts); + }); + }; + this.on('mount', () => { this.stream.on('post', this.onStreamPost); this.stream.on('follow', this.onStreamFollow);