Commit d4dea53a authored by James McGlashan (DarkFox)'s avatar James McGlashan (DarkFox) Committed by Max Kellermann

http -> https for SoundCloud plugin

parent d477a922
......@@ -2,6 +2,8 @@ ver 0.19 (not yet released)
* protocol
- new commands "addtagid", "cleartagid"
- "lsinfo" and "readcomments" allowed for remote files
* playlist
- soundcloud: use https instead of http
* archive
- read tags from songs in an archive
* input
......
......@@ -67,16 +67,16 @@ soundcloud_resolve(const char* uri)
{
char *u, *ru;
if (StringStartsWith(uri, "http://")) {
if (StringStartsWith(uri, "https://")) {
u = g_strdup(uri);
} else if (StringStartsWith(uri, "soundcloud.com")) {
u = g_strconcat("http://", uri, nullptr);
u = g_strconcat("https://", uri, nullptr);
} else {
/* assume it's just a path on soundcloud.com */
u = g_strconcat("http://soundcloud.com/", uri, nullptr);
u = g_strconcat("https://soundcloud.com/", uri, nullptr);
}
ru = g_strconcat("http://api.soundcloud.com/resolve.json?url=",
ru = g_strconcat("https://api.soundcloud.com/resolve.json?url=",
u, "&client_id=",
soundcloud_config.apikey.c_str(), nullptr);
g_free(u);
......@@ -356,11 +356,11 @@ soundcloud_open_uri(const char *uri, Mutex &mutex, Cond &cond)
char *u = nullptr;
if (strcmp(arg, "track") == 0) {
u = g_strconcat("http://api.soundcloud.com/tracks/",
u = g_strconcat("https://api.soundcloud.com/tracks/",
rest, ".json?client_id=",
soundcloud_config.apikey.c_str(), nullptr);
} else if (strcmp(arg, "playlist") == 0) {
u = g_strconcat("http://api.soundcloud.com/playlists/",
u = g_strconcat("https://api.soundcloud.com/playlists/",
rest, ".json?client_id=",
soundcloud_config.apikey.c_str(), nullptr);
} else if (strcmp(arg, "url") == 0) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment