From a231f8d26c53ea4ba38d6a2c77bbec1ffa6d6f92 Mon Sep 17 00:00:00 2001 From: syuilo Date: Mon, 8 Apr 2019 16:34:45 +0900 Subject: [PATCH] Fix bug --- src/client/app/mobile/views/pages/user/home.photos.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/client/app/mobile/views/pages/user/home.photos.vue b/src/client/app/mobile/views/pages/user/home.photos.vue index 9c36f1295..c4f47514d 100644 --- a/src/client/app/mobile/views/pages/user/home.photos.vue +++ b/src/client/app/mobile/views/pages/user/home.photos.vue @@ -4,7 +4,7 @@
@@ -40,11 +40,11 @@ export default Vue.extend({ untilDate: new Date().getTime() + 1000 * 86400 * 365 }).then(notes => { for (const note of notes) { - for (const media of note.media) { + for (const file of note.files) { if (this.images.length < 9) { this.images.push({ note, - media + file }); } }