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:
parent
192d23b591
commit
041a3c9ea7
@ -219,16 +219,20 @@ const Home = () => {
|
||||
|
||||
// FETCH NEWS
|
||||
useEffect(() => {
|
||||
fetch("https://raw.githubusercontent.com/upscayl/upscayl/main/news.md")
|
||||
.then((res) => {
|
||||
return res.blob();
|
||||
fetch("https://raw.githubusercontent.com/upscayl/upscayl/main/news.md", {
|
||||
cache: "no-cache",
|
||||
})
|
||||
.then(async (data) => {
|
||||
const newsData = await data.text();
|
||||
if (!newsData) return;
|
||||
.then((res) => {
|
||||
return res.text();
|
||||
})
|
||||
.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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user