From fe30e4e3a5360c534952ed837e1277d13444f606 Mon Sep 17 00:00:00 2001
From: syuilo <syuilotan@yahoo.co.jp>
Date: Mon, 28 May 2018 13:55:21 +0900
Subject: [PATCH] Fix bug

---
 src/client/app/desktop/views/components/timeline.core.vue | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/client/app/desktop/views/components/timeline.core.vue b/src/client/app/desktop/views/components/timeline.core.vue
index 44d5967db5..1728dad286 100644
--- a/src/client/app/desktop/views/components/timeline.core.vue
+++ b/src/client/app/desktop/views/components/timeline.core.vue
@@ -5,7 +5,7 @@
 		<mk-ellipsis-icon/>
 	</div>
 
-	<mk-notes ref="timeline" :more="canFetchMore ? more : null">
+	<mk-notes ref="timeline" :more="existMore ? more : null">
 		<p :class="$style.empty" slot="empty">
 			%fa:R comments%%i18n:@empty%
 		</p>
@@ -15,7 +15,6 @@
 
 <script lang="ts">
 import Vue from 'vue';
-import getNoteSummary from '../../../../../renderers/get-note-summary';
 
 const fetchLimit = 10;