From 7450e43eb8d491e1572d142089029b8c3663a7d5 Mon Sep 17 00:00:00 2001 From: Igor Katson Date: Mon, 29 Apr 2024 18:40:02 +0100 Subject: [PATCH] Add a missing JS property --- crates/librqbit/webui/src/context.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crates/librqbit/webui/src/context.tsx b/crates/librqbit/webui/src/context.tsx index ad2cf81..cf2af8c 100644 --- a/crates/librqbit/webui/src/context.tsx +++ b/crates/librqbit/webui/src/context.tsx @@ -32,5 +32,8 @@ export const APIContext = createContext({ getTorrentStreamUrl: () => { throw new Error("Function not implemented."); }, + getStreamLogsUrl: function (): string | null { + throw new Error("Function not implemented."); + }, }); export const RefreshTorrentStatsContext = createContext({ refresh: () => {} });