fuck you fuck you fuck you fuck you
This commit is contained in:
parent
13e5afd345
commit
c73d7585d4
2 changed files with 8 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue