Compare commits

..

No commits in common. "3be62814911932066cd2865737a904d29e7c8a7b" and "60973335a5a029b19c14a61abd3e615de6a5efea" have entirely different histories.

4 changed files with 13 additions and 19 deletions

View file

@ -23,7 +23,6 @@ const Timeline = {
'userId',
'listId',
'tag',
'fetchParams',
'embedded',
'count',
'pinnedStatusIds',
@ -182,8 +181,7 @@ const Timeline = {
showImmediately: true,
userId: this.userId,
listId: this.listId,
tag: this.tag,
params: this.fetchParams,
tag: this.tag
}).then(({ statuses }) => {
if (statuses && statuses.length === 0) {
this.bottomedOut = true

View file

@ -93,19 +93,6 @@ const UserProfile = {
hasPinned () {
return !!(this.user.pinnedStatusIds || []).length
},
fetchParams () {
if (this.tab !== 'statuses') {
return []
}
const params = []
if (!this.filterParams.showReplies) {
params.push(['exclude_replies', 1])
}
if (!this.filterParams.showRepeats) {
params.push(['exclude_reblogs', 1])
}
return params
},
favorites () {
return this.$store.state.statuses.timelines.favorites
},
@ -149,7 +136,17 @@ const UserProfile = {
if (this.isUs) timelineTabMap['favorites'] = 'favorites'
const timeline = timelineTabMap[nextTab]
const fetchArgs = { timeline: timeline, userId: this.userId, params: this.fetchParams }
const fetchArgs = { timeline: timeline, userId: this.userId }
if (timeline === 'user') {
const params = []
if (!this.filterParams.showReplies) {
params.push(['exclude_replies', 1])
}
if (!this.filterParams.showRepeats) {
params.push(['exclude_reblogs', 1])
}
fetchArgs.params = params
}
if (timeline) {
this.stopFetching()

View file

@ -92,7 +92,6 @@
:user-id="userId"
:pinned-status-ids="user.pinnedStatusIds"
:in-profile="true"
:fetch-params="fetchParams"
:footer-slipgate="footerRef"
/>
</div>

View file

@ -87,7 +87,7 @@ const startFetching = ({ timeline = 'friends', credentials, store, userId = fals
timelineData.listId = listId
fetchAndUpdate({ timeline, credentials, store, showImmediately, userId, listId, tag, params })
const boundFetchAndUpdate = () =>
fetchAndUpdate({ timeline, credentials, store, userId, listId, tag, params })
fetchAndUpdate({ timeline, credentials, store, userId, listId, tag })
return promiseInterval(boundFetchAndUpdate, 20000)
}
const timelineFetcher = {