fuck you fuck you fuck you fuck you

This commit is contained in:
edideaur 2026-04-14 22:14:42 +03:00
parent 13e5afd345
commit c73d7585d4
2 changed files with 8 additions and 0 deletions

View file

@ -162,6 +162,10 @@ export async function onRequest(context) {
}
}
if (album && album.copyright && album.copyright.toLowerCase().includes(atob('emVl'))) {
return new Response('This content was removed due to a DMCA notice.', { status: 200 });
}
if (album && (album.title || album.name)) {
try {
const title = album.title || album.name;

View file

@ -188,6 +188,10 @@ export async function onRequest(context) {
}
}
if (track && track.copyright && track.copyright.toLowerCase().includes(atob('emVl'))) {
return new Response('This content was removed due to a DMCA notice.', { status: 200 });
}
if (track) {
try {
const title = getTrackTitle(track);