Updates to fixes for deploy

• Updates:
- to fixes for deploy
This commit is contained in:
mgabdev
2020-11-09 16:19:04 -06:00
parent 351929b148
commit 1ef59c2266
3 changed files with 4 additions and 4 deletions

View File

@@ -64,7 +64,7 @@ export const expandGabTrendsFeed = (feedId) => (dispatch, getState) => {
dispatch(expandGabTrendsFeedRequest(feedId))
const url = `http://trends.gab.com/feed/${feedId}?fmt=json&p=${page}`
const url = `https://trends.gab.com/feed/${feedId}?fmt=json&p=${page}`
// api(getState).get(`/api/v1/gab_trends?type=rss&page=${page}&feedId=${feedId}`).then((response) => {
axios.get(url).then((response) => {
dispatch(expandGabTrendsFeedSuccess(response.data.rssFeedItems, feedId, response.data.pagination.p))