diff --git a/app/static/images/frank-cropped.png b/app/static/images/frank-cropped.png new file mode 100644 index 0000000..15b144f Binary files /dev/null and b/app/static/images/frank-cropped.png differ diff --git a/app/static/images/logo-big.webp b/app/static/images/logo-big.webp index 7ae3d7b..f83d370 100644 Binary files a/app/static/images/logo-big.webp and b/app/static/images/logo-big.webp differ diff --git a/app/static/images/logo.webp b/app/static/images/logo.webp index 1b92f69..9c6c193 100644 Binary files a/app/static/images/logo.webp and b/app/static/images/logo.webp differ diff --git a/app/static/js/player.js b/app/static/js/player.js index 72fb144..799f3df 100644 --- a/app/static/js/player.js +++ b/app/static/js/player.js @@ -509,9 +509,10 @@ function playebackSpeeder() { * @param {string} songYtId */ async function downloadSong(songYtId) { - return await fetch("/api/song?id=" + songYtId).catch((err) => - console.error(err), - ); + return await fetch("/api/song?id=" + songYtId).catch((err) => { + console.error(err); + return { ok: false }; + }); } /**