From 62515bbaee4664aa5b67a0e34c423115bd8e25ac Mon Sep 17 00:00:00 2001 From: mgabdev <> Date: Mon, 9 Nov 2020 19:08:12 -0600 Subject: [PATCH] Updated news json url MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit • Updated: - news json url --- app/javascript/gabsocial/actions/news.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/gabsocial/actions/news.js b/app/javascript/gabsocial/actions/news.js index 72a8de69..352a5093 100644 --- a/app/javascript/gabsocial/actions/news.js +++ b/app/javascript/gabsocial/actions/news.js @@ -101,7 +101,7 @@ export const fetchGabNews = () => (dispatch, getState) => { dispatch(fetchGabNewsRequest()) - const url = 'https://news.gab.com/feed/json' + const url = 'https://news.gab.com/feed/?feed=json' // api(getState).get(`/api/v1/gab_trends?type=news`).then((response) => { axios.get(url).then((response) => { dispatch(fetchGabNewsSuccess(response.data.items))