Handle "naked" CoverArtIDs (IDs of album, mediafiles and playlists)

This commit is contained in:
Deluan 2022-12-28 12:32:46 -05:00 committed by Deluan Quintão
parent bc09de6640
commit 61e5523457
14 changed files with 82 additions and 25 deletions

View file

@ -34,6 +34,10 @@ func (id ArtworkID) String() string {
return fmt.Sprintf("%s-%s", id.Kind.prefix, id.ID)
}
func NewArtworkID(kind Kind, id string) ArtworkID {
return ArtworkID{kind, id}
}
func ParseArtworkID(id string) (ArtworkID, error) {
parts := strings.SplitN(id, "-", 2)
if len(parts) != 2 {