mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 21:28:06 +00:00
fix: 纠正脏标的判断 (#2268)
This commit is contained in:
parent
904e61bee6
commit
7cb063d511
3 changed files with 4 additions and 4 deletions
|
|
@ -96,7 +96,7 @@ export default {
|
|||
return this.type === 'playlist' && item.privacy === 10;
|
||||
},
|
||||
isExplicit(item) {
|
||||
return this.type === 'album' && item.mark === 1056768;
|
||||
return this.type === 'album' && (item.mark & 1048576) === 1048576;
|
||||
},
|
||||
getTitleLink(item) {
|
||||
return `/${this.type}/${item.id}`;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue