mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-15 04:39:58 +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];
|
||||
|
||||
const expandLink = (url) => {
|
||||
return new URL(url, urlMasterHLS).toString();
|
||||
const expandLink = (path) => {
|
||||
return new URL(path, urlMasterHLS).toString();
|
||||
};
|
||||
|
||||
let urls = expandLink(bestQuality.uri);
|
||||
|
|
Loading…
Reference in a new issue