Skip to content

Commit

Permalink
Updated base URL for fetching news images (#1443)
Browse files Browse the repository at this point in the history
  • Loading branch information
pola authored Jan 16, 2023
1 parent 20148d6 commit efa324a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/reducers/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ export function initNews() {
parser.parse(newsXml)?.rss?.channel?.item?.map(newsEntry => ({
title: newsEntry.title,
description: newsEntry.description,
image: `https://minecraft.net${newsEntry.imageURL}`,
image: `https://www.minecraft.net${newsEntry.imageURL}`,
url: newsEntry.link,
guid: newsEntry.guid
})) || [];
Expand Down

0 comments on commit efa324a

Please sign in to comment.