diff --git a/crates/librqbit/webui/src/context.tsx b/crates/librqbit/webui/src/context.tsx index cf2af8c..58a63a8 100644 --- a/crates/librqbit/webui/src/context.tsx +++ b/crates/librqbit/webui/src/context.tsx @@ -35,5 +35,8 @@ export const APIContext = createContext({ getStreamLogsUrl: function (): string | null { throw new Error("Function not implemented."); }, + getPlaylistUrl: function (index: number): string | null { + throw new Error("Function not implemented."); + }, }); export const RefreshTorrentStatsContext = createContext({ refresh: () => {} });