remove logs

This commit is contained in:
Chris Kruining 2025-06-03 10:18:04 +02:00
parent ac28de56d3
commit 61795fdc5e
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2

View file

@ -16,12 +16,8 @@ const lookupTable = query(async () => listItemIds(), 'content.lookupTable');
export const getHighlights = () => getContinueWatching(jellyfinUserId); export const getHighlights = () => getContinueWatching(jellyfinUserId);
export const getStream = query(async (type: Entry['type'], id: string, range: string) => { export const getStream = query(async (type: Entry['type'], id: string, range: string) => {
console.log(type, id);
const table = await lookupTable(); const table = await lookupTable();
console.log(table, table[`${type}-${id}`].jellyfin);
return getItemStream(table[`${type}-${id}`].jellyfin, range); return getItemStream(table[`${type}-${id}`].jellyfin, range);
}, 'content.stream'); }, 'content.stream');