mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Handle "naked" CoverArtIDs (IDs of album, mediafiles and playlists)
This commit is contained in:
parent
bc09de6640
commit
61e5523457
14 changed files with 82 additions and 25 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue