Skip to content

Commit

Permalink
Changed feed api to use monogame community site (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
AristurtleDev authored Nov 22, 2023
1 parent bb17f70 commit 88d46e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/latest-posts.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ async function initialize_community_feeds() {
* it into the #latest-community element on the page
*/
async function get_latest_news() {
let response = await fetch('https://communityapi.aristurtle.net/latest-news');
let response = await fetch('https://community.monogame.net/latest-news');
let json = await response.json();

if (json.topic_list.topics != undefined) {
Expand All @@ -32,7 +32,7 @@ async function get_latest_news() {
* it into the #latest-community element on the page
*/
async function get_latest_community() {
let response = await fetch('https://communityapi.aristurtle.net/latest-community');
let response = await fetch('https://community.monogame.net/latest-community');
let json = await response.json();

if (json.topic_list.topics != undefined) {
Expand Down

0 comments on commit 88d46e4

Please sign in to comment.