From 9fd530b78aed2c9abadffb6802e32018dee6ac18 Mon Sep 17 00:00:00 2001 From: Deluan Date: Wed, 30 Mar 2016 09:07:32 -0400 Subject: [PATCH] Fixed message --- api/browsing.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/browsing.go b/api/browsing.go index 595bbd989..b433db648 100644 --- a/api/browsing.go +++ b/api/browsing.go @@ -137,7 +137,7 @@ func (c *BrowsingController) GetSong() { switch { case err == domain.ErrNotFound: beego.Error("Requested Id", id, "not found:", err) - c.SendError(responses.ErrorDataNotFound, "Directory not found") + c.SendError(responses.ErrorDataNotFound, "Song not found") case err != nil: beego.Error(err) c.SendError(responses.ErrorGeneric, "Internal Error")