fix: 纠正脏标的判断 (#2268)

This commit is contained in:
5unV 2024-08-07 22:37:29 +08:00 committed by GitHub
parent 904e61bee6
commit 7cb063d511
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View File

@ -96,7 +96,7 @@ export default {
return this.type === 'playlist' && item.privacy === 10; return this.type === 'playlist' && item.privacy === 10;
}, },
isExplicit(item) { isExplicit(item) {
return this.type === 'album' && item.mark === 1056768; return this.type === 'album' && (item.mark & 1048576) === 1048576;
}, },
getTitleLink(item) { getTitleLink(item) {
return `/${this.type}/${item.id}`; return `/${this.type}/${item.id}`;

View File

@ -42,13 +42,13 @@
:exclude="$parent.albumObject.artist.name" :exclude="$parent.albumObject.artist.name"
prefix="-" prefix="-"
/></span> /></span>
<span v-if="isAlbum && track.mark === 1318912" class="explicit-symbol" <span v-if="isAlbum && (track.mark & 1048576) === 1048576" class="explicit-symbol"
><ExplicitSymbol ><ExplicitSymbol
/></span> /></span>
</div> </div>
<div v-if="!isAlbum" class="artist"> <div v-if="!isAlbum" class="artist">
<span <span
v-if="track.mark === 1318912" v-if="(track.mark & 1048576) === 1048576"
class="explicit-symbol before-artist" class="explicit-symbol before-artist"
><ExplicitSymbol :size="15" ><ExplicitSymbol :size="15"
/></span> /></span>

View File

@ -28,7 +28,7 @@
<span v-else>Compilation by Various Artists</span> <span v-else>Compilation by Various Artists</span>
</div> </div>
<div class="date-and-count"> <div class="date-and-count">
<span v-if="album.mark === 1056768" class="explicit-symbol" <span v-if="(album.mark & 1048576) === 1048576" class="explicit-symbol"
><ExplicitSymbol ><ExplicitSymbol
/></span> /></span>
<span :title="album.publishTime | formatDate">{{ <span :title="album.publishTime | formatDate">{{