mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-15 12:50:01 +00:00
vimeo: use proper local variable name in expandLink
This commit is contained in:
parent
850877369c
commit
de7df94271
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue