diff --git a/CHANGELOG.md b/CHANGELOG.md index af5a9fee269c2860a0352d8a61922fe45aed0cd0..d54aa07d9ed2a59233c3328810ceed40d7ff1e9c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ChangeLog unreleased ---------- +* デッã‚ã§ãƒ¡ãƒ‡ã‚£ã‚¢æŠ•ç¨¿ã®ã¿è¡¨ç¤ºã™ã‚‹ã‚ªãƒ—ションãŒæ©Ÿèƒ½ã—ã¦ã„ãªã„å•é¡Œã‚’ä¿®æ£ * デッã‚ã§ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’表示ã—ãŸã¨ãã«ã‚¿ã‚¤ãƒ ラインãŒæ®‹å˜ã™ã‚‹å•é¡Œã‚’ä¿®æ£ * モãƒã‚¤ãƒ«ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ãƒšãƒ¼ã‚¸ã§ã€ãƒ¦ãƒ¼ã‚¶ãƒ¼Aã®ã‚¿ã‚¤ãƒ ラインã‹ã‚‰ä»–ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼Bã‚’é¸æŠžã—ã¦ãƒ¦ãƒ¼ã‚¶ãƒ¼Bã®ã‚¿ã‚¤ãƒ ラインã«ç§»å‹•ã—ãŸã¨ãã€ãƒ¦ãƒ¼ã‚¶ãƒ¼Aã®ã‚¿ã‚¤ãƒ ラインãŒæ®‹ã‚‹å•é¡Œã‚’ä¿®æ£ * ãƒã‚¤ãƒ©ã‚¤ãƒˆã§ãƒŸãƒ¥ãƒ¼ãƒˆã—ã¦ã„るユーザーã®æŠ•ç¨¿ãŒå«ã¾ã‚Œã‚‹å•é¡Œã‚’ä¿®æ£ diff --git a/src/client/app/desktop/views/deck/deck.tl.vue b/src/client/app/desktop/views/deck/deck.tl.vue index 263c2a0820e000afc2abbcfdaf4f3bad7f2c6dca..0d08ad4d247315ff802e778f5088ea3a58cecdcb 100644 --- a/src/client/app/desktop/views/deck/deck.tl.vue +++ b/src/client/app/desktop/views/deck/deck.tl.vue @@ -73,16 +73,18 @@ export default Vue.extend({ watch: { mediaOnly() { - this.fetch(); + (this.$refs.timeline as any).reload(); } }, created() { this.makePromise = cursor => this.$root.api(this.endpoint, { limit: fetchLimit + 1, - untilDate: cursor ? undefined : (this.date ? this.date.getTime() : undefined), untilId: cursor ? cursor : undefined, - ...this.baseQuery, ...this.query + withFiles: this.mediaOnly, + includeMyRenotes: this.$store.state.settings.showMyRenotes, + includeRenotedMyNotes: this.$store.state.settings.showRenotedMyNotes, + includeLocalRenotes: this.$store.state.settings.showLocalRenotes }).then(notes => { if (notes.length == fetchLimit + 1) { notes.pop();