fixed build

This commit is contained in:
Kwoth 2016-12-27 01:39:13 +01:00
parent 67a6b69088
commit b570234f68
2 changed files with 3 additions and 3 deletions

View File

@ -80,10 +80,11 @@ namespace NadekoBot.Modules.Music.Classes
return $"https://cdn.discordapp.com/attachments/155726317222887425/261850914783100928/1482522077_music.png"; //test links
case MusicType.Soundcloud:
return SongInfo.AlbumArt;
}
default:
return "";
}
}
}
private string songUrl {
get {

View File

@ -239,8 +239,7 @@ namespace NadekoBot.Modules.Music
.WithDescription(currentSong.PrettyFullTime)
.WithFooter(ef => ef.WithText($"{currentSong.PrettyProvider} | {currentSong.QueuerName}"))
.WithOkColor()
.WithThumbnail(tn => tn.Url = currentSong.Thumbnail)
.WithUrl(currentSong.SongUrl);
.WithThumbnail(tn => tn.Url = currentSong.Thumbnail);
await channel.EmbedAsync(embed.Build()).ConfigureAwait(false);
}