Merge remote-tracking branch 'bloodywing/patch-1'

bloodywing
This commit is contained in:
WardPearce
2026-03-25 02:36:53 +13:00
@@ -39,7 +39,7 @@ export async function searchChannelContentInvidious(
search: string,
fetchOptions?: RequestInit
): Promise<ChannelContent> {
const path = buildPath(`channel/${channelId}/search`);
const path = buildPath(`channels/${channelId}/search`);
path.searchParams.set('q', search);
const resp = await fetchErrorHandle(await fetch(path, fetchOptions));