Update: Fix fetch error when login

This commit is contained in:
jasper 2019-02-19 09:42:53 -08:00
parent b4709515f2
commit 1e43a47c3c
1 changed files with 10 additions and 10 deletions

View File

@ -53,16 +53,16 @@ const Timeline = {
window.addEventListener('scroll', this.scrollLoad)
if (typeof credentials !== 'undefined' || this.timelineName !== 'friends') {
timelineFetcher.fetchAndUpdate({
store,
credentials,
timeline: this.timelineName,
showImmediately,
userId: this.userId,
tag: this.tag
})
}
if (this.timelineName === 'friends' && !credentials) { return false }
timelineFetcher.fetchAndUpdate({
store,
credentials,
timeline: this.timelineName,
showImmediately,
userId: this.userId,
tag: this.tag
})
},
mounted () {
if (typeof document.hidden !== 'undefined') {