From 40f3124d8aa0050b1c1914c515cbbd9ac81b2d9e Mon Sep 17 00:00:00 2001 From: Alexandre Tuleu Date: Wed, 20 Jan 2016 11:28:53 +0100 Subject: [PATCH] Fixes the Description Getter We need to store the URL now, for the AlbumCoverCache to work --- album_description_getter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/album_description_getter.go b/album_description_getter.go index 6967a5a..293367f 100644 --- a/album_description_getter.go +++ b/album_description_getter.go @@ -55,7 +55,7 @@ func (g *AlbumDescriptionGetter) Get(a *Album) error { return } - a.CoverURL = path.Ext(src) + a.CoverURL = src errors <- nil }()