Merge pull request #153 from alucardRD/master

Fixed initial Soundcloud API test
pull/157/head
Matthieu Grieger 2016-06-23 08:07:05 -07:00 committed by GitHub
commit 3ed06c57e6
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ func (sc *SoundCloud) CheckAPIKey() error {
return errors.New("No SoundCloud API key has been provided")
}
url := "http://api.soundcloud.com/tracks/vjflzpbkmerb?client_id=%s"
response, err := http.Get(fmt.Sprintf(url, viper.GetString("api.soundcloud")))
response, err := http.Get(fmt.Sprintf(url, viper.GetString("api_keys.soundcloud")))
defer response.Body.Close()
if err != nil {
return err