Fixed !!sq
This commit is contained in:
parent
a3bf2d5efb
commit
5e2df36de1
@ -50,7 +50,7 @@ namespace NadekoBot.Modules.Music.Classes
|
|||||||
var response = "";
|
var response = "";
|
||||||
using (var http = new HttpClient())
|
using (var http = new HttpClient())
|
||||||
{
|
{
|
||||||
await http.GetStringAsync($"http://api.soundcloud.com/tracks?q={Uri.EscapeDataString(query)}&client_id={NadekoBot.Credentials.SoundCloudClientId}").ConfigureAwait(false);
|
response = await http.GetStringAsync($"http://api.soundcloud.com/tracks?q={Uri.EscapeDataString(query)}&client_id={NadekoBot.Credentials.SoundCloudClientId}").ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
var responseObj = JsonConvert.DeserializeObject<SoundCloudVideo[]>(response).Where(s => s.Streamable).FirstOrDefault();
|
var responseObj = JsonConvert.DeserializeObject<SoundCloudVideo[]>(response).Where(s => s.Streamable).FirstOrDefault();
|
||||||
@ -70,6 +70,7 @@ namespace NadekoBot.Modules.Music.Classes
|
|||||||
[JsonIgnore]
|
[JsonIgnore]
|
||||||
public string FullName => User.Name + " - " + Title;
|
public string FullName => User.Name + " - " + Title;
|
||||||
public bool Streamable { get; set; } = false;
|
public bool Streamable { get; set; } = false;
|
||||||
|
public int Duration { get; set; }
|
||||||
[JsonProperty("permalink_url")]
|
[JsonProperty("permalink_url")]
|
||||||
public string TrackLink { get; set; } = "";
|
public string TrackLink { get; set; } = "";
|
||||||
[JsonIgnore]
|
[JsonIgnore]
|
||||||
|
Loading…
Reference in New Issue
Block a user