diff --git a/src/NadekoBot/Modules/Searches/Search/Youtube/YoutubeDataApiSearchService.cs b/src/NadekoBot/Modules/Searches/Search/Youtube/YoutubeDataApiSearchService.cs index 6284dc27a..d510916d3 100644 --- a/src/NadekoBot/Modules/Searches/Search/Youtube/YoutubeDataApiSearchService.cs +++ b/src/NadekoBot/Modules/Searches/Search/Youtube/YoutubeDataApiSearchService.cs @@ -18,6 +18,9 @@ public sealed class YoutubeDataApiSearchService : IYoutubeSearchService, INServi if(results.Count == 0) return null; - return results.Map(r => new VideoInfo(r)); + return results.Map(r => new VideoInfo() + { + Url = r + }); } } \ No newline at end of file