1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-23 23:21:05 +01:00

Fix news fetchinbg

This commit is contained in:
Nayam Amarshe 2023-11-26 13:52:13 +05:30
parent 192d23b591
commit 041a3c9ea7

View File

@ -219,16 +219,20 @@ const Home = () => {
// FETCH NEWS // FETCH NEWS
useEffect(() => { useEffect(() => {
fetch("https://raw.githubusercontent.com/upscayl/upscayl/main/news.md") fetch("https://raw.githubusercontent.com/upscayl/upscayl/main/news.md", {
cache: "no-cache",
})
.then((res) => { .then((res) => {
return res.blob(); return res.text();
}) })
.then(async (data) => { .then((result) => {
const newsData = await data.text(); const newsData = result;
if (!newsData) return; if (!newsData) {
console.log("📰 Could not fetch news data");
return;
}
const markdownData = matter(newsData); const markdownData = matter(newsData);
console.log("🚀 => file: index.tsx:229 => markdownData:", markdownData); if (!markdownData) return;
console.log("🚀 => file: index.tsx:229 => news:", news);
if ( if (
markdownData && markdownData &&
@ -239,7 +243,7 @@ const Home = () => {
if (showNewsModal === false) { if (showNewsModal === false) {
setShowNewsModal(false); setShowNewsModal(false);
} }
} else if (markdownData && news) { } else if (markdownData) {
setNews(matter(newsData)); setNews(matter(newsData));
setShowNewsModal(true); setShowNewsModal(true);
} }