Fix video exists check missing port

This commit is contained in:
MerlinScheurer 2023-09-04 22:58:57 +02:00
parent dc8fecf792
commit 12f4360ff8
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ async function videoExists(id) {
let response = await sendGet(path);
if (!response.data) return false;
let access = await getAccess();
return new URL(`video/${id}/`, access.url).href;
return new URL(`video/${id}/`, `${access.url}:${access.port}/`).href;
}
async function getChannelCache() {