From 195484b42e2d675efb533f1ec118d0e734d89b95 Mon Sep 17 00:00:00 2001 From: Nikhil Nawgiri Date: Sat, 26 Oct 2024 16:54:01 +0200 Subject: [PATCH] Update API config imports --- be/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/main.ts b/be/src/main.ts index f417ccd..488ad60 100644 --- a/be/src/main.ts +++ b/be/src/main.ts @@ -1,6 +1,6 @@ import fetch from "node-fetch"; -import { API_BASE, API_TOKEN } from "../config"; +import { API_BASE, API_TOKEN } from "../config.ts"; const API_ENDPOINT_WITH_PARAMS = "/Items?isMovie=true&isSeries=true&recursive=true&fields=ProviderIds&filters=&mediaTypes=Video&enableTotalRecordCount=true&enableImages=false"; const API_URL = API_BASE + API_ENDPOINT_WITH_PARAMS;