vimeo: use proper local variable name in expandLink

This commit is contained in:
wukko 2024-06-23 23:26:43 +06:00
parent 850877369c
commit de7df94271
No known key found for this signature in database
GPG key ID: 3E30B3F26C7B4AA2

View file

@ -60,8 +60,8 @@ export default async function(obj) {
} }
if (!bestQuality) bestQuality = variants[0]; if (!bestQuality) bestQuality = variants[0];
const expandLink = (url) => { const expandLink = (path) => {
return new URL(url, urlMasterHLS).toString(); return new URL(path, urlMasterHLS).toString();
}; };
let urls = expandLink(bestQuality.uri); let urls = expandLink(bestQuality.uri);