chore: remove unneeded async key

This commit is contained in:
luan.lrt4@gmail.com
2022-05-01 00:14:18 -03:00
parent 98a62c31da
commit 2ebcd49f02

View File

@@ -440,7 +440,7 @@ class Actions {
throw new Utils.InnertubeError('Invalid client', client);
const response = await ({
YOUTUBE: async () => this.#request({
YOUTUBE: () => this.#request({
baseURL: Constants.URLS.YT_SUGGESTIONS + `search?client=firefox&ds=yt&q=${encodeURIComponent(input)}`,
}),
YTMUSIC: () => this.music('get_search_suggestions', {
@@ -459,4 +459,4 @@ class Actions {
}
}
module.exports = Actions;
module.exports = Actions;