Using sorted sets

This commit is contained in:
Deluan
2016-03-05 19:40:36 -05:00
parent 3db18d8bd6
commit d2701ea67c
3 changed files with 13 additions and 11 deletions
+1 -1
View File
@@ -97,7 +97,7 @@ func (c *GetMusicDirectoryController) buildAlbumDir(al *domain.Album, tracks []d
func (c *GetMusicDirectoryController) isArtist(id string) bool {
found, err := c.artistRepo.Exists(id)
if err != nil {
beego.Error("Error searching for Artist:", err)
beego.Error("Error searching for Artist", id, " - ", err)
c.SendError(responses.ERROR_GENERIC, "Internal Error")
}
return found