forked from FoundKeyGang/FoundKey
デッキでメディア投稿のみ表示するオプションが機能していない問題を修正
This commit is contained in:
parent
43f4c5b7cd
commit
c89aa7eb95
2 changed files with 6 additions and 3 deletions
|
@ -3,6 +3,7 @@ ChangeLog
|
||||||
|
|
||||||
unreleased
|
unreleased
|
||||||
----------
|
----------
|
||||||
|
* デッキでメディア投稿のみ表示するオプションが機能していない問題を修正
|
||||||
* デッキでユーザーを表示したときにタイムラインが残存する問題を修正
|
* デッキでユーザーを表示したときにタイムラインが残存する問題を修正
|
||||||
* モバイルのユーザーページで、ユーザーAのタイムラインから他のユーザーBを選択してユーザーBのタイムラインに移動したとき、ユーザーAのタイムラインが残る問題を修正
|
* モバイルのユーザーページで、ユーザーAのタイムラインから他のユーザーBを選択してユーザーBのタイムラインに移動したとき、ユーザーAのタイムラインが残る問題を修正
|
||||||
* ハイライトでミュートしているユーザーの投稿が含まれる問題を修正
|
* ハイライトでミュートしているユーザーの投稿が含まれる問題を修正
|
||||||
|
|
|
@ -73,16 +73,18 @@ export default Vue.extend({
|
||||||
|
|
||||||
watch: {
|
watch: {
|
||||||
mediaOnly() {
|
mediaOnly() {
|
||||||
this.fetch();
|
(this.$refs.timeline as any).reload();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
created() {
|
created() {
|
||||||
this.makePromise = cursor => this.$root.api(this.endpoint, {
|
this.makePromise = cursor => this.$root.api(this.endpoint, {
|
||||||
limit: fetchLimit + 1,
|
limit: fetchLimit + 1,
|
||||||
untilDate: cursor ? undefined : (this.date ? this.date.getTime() : undefined),
|
|
||||||
untilId: cursor ? cursor : 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 => {
|
}).then(notes => {
|
||||||
if (notes.length == fetchLimit + 1) {
|
if (notes.length == fetchLimit + 1) {
|
||||||
notes.pop();
|
notes.pop();
|
||||||
|
|
Loading…
Reference in a new issue