mirror of
https://git.rape.pet/ulith/amputoma-fe.git
synced 2025-01-31 08:33:22 +01:00
make rot.js check placeholders
This commit is contained in:
parent
0ad35c7ea0
commit
571e204f87
1 changed files with 8 additions and 2 deletions
|
@ -147,10 +147,16 @@
|
|||
if (musicContainer) {
|
||||
setMusic(rand(musicContainer.children).src);
|
||||
return true;
|
||||
} else {
|
||||
const placeholderContainer = ptp.querySelector(".placeholder-container");
|
||||
if (placeholderContainer && placeholderContainer.href.endsWith(".m4a")) {
|
||||
setMusic(placeholderContainer.href);
|
||||
return true;
|
||||
} else {
|
||||
setMusic(null);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
//Configure by fields
|
||||
|
|
Loading…
Reference in a new issue