don't fetch sidebar for /r/all
This commit is contained in:
parent
f5a070e6bd
commit
c838f10d01
|
@ -23,6 +23,7 @@ module.exports = function() {
|
||||||
}
|
}
|
||||||
resolve(obj)
|
resolve(obj)
|
||||||
} else {
|
} else {
|
||||||
|
if(subreddit !== 'all') {
|
||||||
fetch(encodeURI(`https://oauth.reddit.com/r/${subreddit}/about`), redditApiGETHeaders())
|
fetch(encodeURI(`https://oauth.reddit.com/r/${subreddit}/about`), redditApiGETHeaders())
|
||||||
.then(result => {
|
.then(result => {
|
||||||
if(result.status === 200) {
|
if(result.status === 200) {
|
||||||
|
@ -58,6 +59,9 @@ module.exports = function() {
|
||||||
console.error('Error fetching the sidebar.', error)
|
console.error('Error fetching the sidebar.', error)
|
||||||
resolve(null)
|
resolve(null)
|
||||||
})
|
})
|
||||||
|
} else {
|
||||||
|
resolve(null)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue