Skip to content

Commit

Permalink
Fix parsing explicit status for search results
Browse files Browse the repository at this point in the history
  • Loading branch information
ta264 committed Mar 31, 2022
1 parent a8dc2ed commit 5f61dd1
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,9 @@ public class DeemixGwAlbum
public string Version { get; set; }
public string Link { get; set; }

public bool Explicit => ExplicitAlbumContent?.ExplicitLyrics == 1 || ExplicitAlbumContent.ExplicitCover == 1;
public bool Explicit => ExplicitAlbumContent?.ExplicitLyrics == 1 ||
ExplicitAlbumContent?.ExplicitLyrics == 4 ||
ExplicitAlbumContent?.ExplicitCover == 1;
}

public class DeemixAlbumUrl
Expand Down

0 comments on commit 5f61dd1

Please sign in to comment.