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
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) => {
return res.blob();
return res.text();
})
.then(async (data) => {
const newsData = await data.text();
if (!newsData) return;
.then((result) => {
const newsData = result;
if (!newsData) {
console.log("📰 Could not fetch news data");
return;
}
const markdownData = matter(newsData);
console.log("🚀 => file: index.tsx:229 => markdownData:", markdownData);
console.log("🚀 => file: index.tsx:229 => news:", news);
if (!markdownData) return;
if (
markdownData &&
@ -239,7 +243,7 @@ const Home = () => {
if (showNewsModal === false) {
setShowNewsModal(false);
}
} else if (markdownData && news) {
} else if (markdownData) {
setNews(matter(newsData));
setShowNewsModal(true);
}