diff options
author | James McGlashan (DarkFox) <mpd@darkfox.id.au> | 2014-01-04 20:13:17 +1100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-04 14:01:17 +0100 |
commit | 48c96bbaea542491b930f244e22d17db5a281434 (patch) | |
tree | 7a34bdcc114375ab3bf7e83e06314586dbbdd1b5 /src | |
parent | c666794ce3faf0477fc7726641f36e2d5e7160f6 (diff) | |
download | mpd-48c96bbaea542491b930f244e22d17db5a281434.tar.gz mpd-48c96bbaea542491b930f244e22d17db5a281434.tar.xz mpd-48c96bbaea542491b930f244e22d17db5a281434.zip |
Added application key for soundcloud plugin
Diffstat (limited to 'src')
-rw-r--r-- | src/playlist/SoundCloudPlaylistPlugin.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/playlist/SoundCloudPlaylistPlugin.cxx b/src/playlist/SoundCloudPlaylistPlugin.cxx index 07ac52c04..3059b819e 100644 --- a/src/playlist/SoundCloudPlaylistPlugin.cxx +++ b/src/playlist/SoundCloudPlaylistPlugin.cxx @@ -46,7 +46,8 @@ static constexpr Domain soundcloud_domain("soundcloud"); static bool soundcloud_init(const config_param ¶m) { - soundcloud_config.apikey = param.GetBlockValue("apikey", ""); + // APIKEY for MPD application, registered under DarkFox' account. + soundcloud_config.apikey = param.GetBlockValue("apikey", "a25e51780f7f86af0afa91f241d091f8"); if (soundcloud_config.apikey.empty()) { LogDebug(soundcloud_domain, "disabling the soundcloud playlist plugin " |