mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-17 22:00:00 +00:00
match: light cleanup
This commit is contained in:
parent
f9feaa41ce
commit
c458423e03
1 changed files with 6 additions and 5 deletions
|
@ -37,7 +37,6 @@ export default async function(host, patternMatch, url, lang, obj) {
|
|||
break;
|
||||
case "vk":
|
||||
r = await vk({
|
||||
url: url,
|
||||
userId: patternMatch["userId"],
|
||||
videoId: patternMatch["videoId"],
|
||||
quality: obj.vQuality
|
||||
|
@ -57,11 +56,13 @@ export default async function(host, patternMatch, url, lang, obj) {
|
|||
isAudioMuted: obj.isAudioMuted,
|
||||
dubLang: obj.dubLang
|
||||
}
|
||||
if (url.match('music.youtube.com') || isAudioOnly === true) {
|
||||
|
||||
if (new URL(url).hostname === 'music.youtube.com' || isAudioOnly === true) {
|
||||
fetchInfo.quality = "max";
|
||||
fetchInfo.format = "vp9";
|
||||
fetchInfo.isAudioOnly = true
|
||||
}
|
||||
|
||||
r = await youtube(fetchInfo);
|
||||
break;
|
||||
case "reddit":
|
||||
|
@ -83,9 +84,9 @@ export default async function(host, patternMatch, url, lang, obj) {
|
|||
break;
|
||||
case "tumblr":
|
||||
r = await tumblr({
|
||||
id: patternMatch["id"],
|
||||
url: url,
|
||||
user: patternMatch["user"] || false
|
||||
id: patternMatch.id,
|
||||
user: patternMatch.user,
|
||||
url
|
||||
});
|
||||
break;
|
||||
case "vimeo":
|
||||
|
|
Loading…
Reference in a new issue