diff --git a/src/NadekoBot/Services/Impl/GoogleApiService.cs b/src/NadekoBot/Services/Impl/GoogleApiService.cs index 712dc4a9..0264e351 100644 --- a/src/NadekoBot/Services/Impl/GoogleApiService.cs +++ b/src/NadekoBot/Services/Impl/GoogleApiService.cs @@ -46,6 +46,7 @@ namespace NadekoBot.Services.Impl var query = yt.Search.List("snippet"); query.MaxResults = count; query.Type = "playlist"; + query.Q = keywords; return (await query.ExecuteAsync()).Items.Select(i => i.Id.PlaylistId); } diff --git a/src/NadekoBot/libs/libsodium.dll b/src/NadekoBot/libsodium.dll similarity index 100% rename from src/NadekoBot/libs/libsodium.dll rename to src/NadekoBot/libsodium.dll diff --git a/src/NadekoBot/libs/opus.dll b/src/NadekoBot/opus.dll similarity index 100% rename from src/NadekoBot/libs/opus.dll rename to src/NadekoBot/opus.dll diff --git a/src/NadekoBot/project.json b/src/NadekoBot/project.json index 67066f42..bd846dfc 100644 --- a/src/NadekoBot/project.json +++ b/src/NadekoBot/project.json @@ -10,7 +10,8 @@ "exclude": [ "data" ] }, "copyToOutput": { - "include": [ "data", "libs" ], + "include": [ "data" ], + "includeFiles": ["libsodium.dll", "opus.dll"], "exclude": [ "data/musicdata" ], "mappings": { "./": "./libs"