Fixes
Some checks failed
Music Collection CI Workflow / test (./backend) (push) Successful in 29s
Music Collection CI Workflow / test (./frontend) (push) Successful in 35s
Music Collection CI Workflow / deploy (push) Has been cancelled
Music Collection CI Workflow / build-and-push-images (./frontend/Dockerfile, git.anatid.net/tabris/music-collection-frontend, ./frontend) (push) Has been cancelled
Music Collection CI Workflow / build-and-push-images (./backend/Dockerfile, git.anatid.net/tabris/music-collection-backend, ./backend) (push) Has been cancelled

This commit is contained in:
Phill Pover 2025-04-07 05:40:48 +01:00
parent 62a08dd6be
commit 3ecd1bc422

View File

@ -4,7 +4,7 @@ export async function getAlbums() {
return fetch('https://api.anatid.net/album', { return fetch('https://api.anatid.net/album', {
method: "GET", method: "GET",
headers: { "Content-Type": "application/json" }, headers: { "Content-Type": "application/json" },
next: { revalidate: 3600 } next: { revalidate: 10 }
}).then(response => { }).then(response => {
if (response.ok) { if (response.ok) {
return response.json(); return response.json();
@ -19,7 +19,7 @@ export async function getAlbum(id: number) {
return fetch(`https://api.anatid.net/album/${id}`, { return fetch(`https://api.anatid.net/album/${id}`, {
method: "GET", method: "GET",
headers: { "Content-Type": "application/json" }, headers: { "Content-Type": "application/json" },
next: { revalidate: 3600 } next: { revalidate: 10 }
}).then(response => { }).then(response => {
if (response.ok) { if (response.ok) {
return response.json(); return response.json();
@ -98,7 +98,7 @@ export async function getSongs() {
return fetch("https://api.anatid.net/song/", { return fetch("https://api.anatid.net/song/", {
method: "GET", method: "GET",
headers: { "Content-Type": "application/json" }, headers: { "Content-Type": "application/json" },
next: { revalidate: 3600 } next: { revalidate: 10 }
}).then(response => { }).then(response => {
if (response.ok) { if (response.ok) {
return response.json(); return response.json();
@ -113,7 +113,7 @@ export async function getSong(id: number) {
return fetch(`https://api.anatid.net/song/${id}`, { return fetch(`https://api.anatid.net/song/${id}`, {
method: "GET", method: "GET",
headers: { "Content-Type": "application/json" }, headers: { "Content-Type": "application/json" },
next: { revalidate: 3600 } next: { revalidate: 10 }
}).then(response => { }).then(response => {
if (response.ok) { if (response.ok) {
return response.json(); return response.json();
@ -164,7 +164,7 @@ export async function updateSong(formData: FormData) {
duration: duration, duration: duration,
trackNumber: trackNumber, trackNumber: trackNumber,
}), }),
next: { revalidate: 3600 } next: { revalidate: 10 }
}).then(response => { }).then(response => {
if (response.ok) { if (response.ok) {
return response.json(); return response.json();