Browse Source

If TMDB key is empty, don't attempt request

pull/972/head
William Oldham 1 year ago
parent
commit
e555354e17
  1. 6
      src/backend/metadata/tmdb.ts

6
src/backend/metadata/tmdb.ts

@ -144,12 +144,16 @@ export function decodeTMDBId(
const baseURL = "https://api.themoviedb.org/3"; const baseURL = "https://api.themoviedb.org/3";
const apiKey = conf().TMDB_READ_API_KEY;
const headers = { const headers = {
accept: "application/json", accept: "application/json",
Authorization: `Bearer ${conf().TMDB_READ_API_KEY}`, Authorization: `Bearer ${apiKey}`,
}; };
async function get<T>(url: string, params?: object): Promise<T> { async function get<T>(url: string, params?: object): Promise<T> {
if (!apiKey) throw new Error("TMDB API key not set");
const res = await mwFetch<any>(encodeURI(url), { const res = await mwFetch<any>(encodeURI(url), {
headers, headers,
baseURL, baseURL,

Loading…
Cancel
Save