mirror of
https://github.com/wukko/cobalt.git
synced 2025-01-22 10:46:19 +01:00
all: add space after catch
This commit is contained in:
parent
4c006b2291
commit
f7dc6cebad
4 changed files with 7 additions and 7 deletions
|
@ -27,7 +27,7 @@ const setupMain = async (cookiePath) => {
|
|||
cluster.broadcast({ cookies });
|
||||
|
||||
console.log(`${Green('[✓]')} cookies loaded successfully!`);
|
||||
} catch(e) {
|
||||
} catch (e) {
|
||||
console.error(`${Yellow('[!]')} failed to load cookies.`);
|
||||
console.error('error:', e);
|
||||
}
|
||||
|
|
|
@ -124,7 +124,7 @@ export default async function(o) {
|
|||
dispatcher: o.dispatcher
|
||||
})
|
||||
);
|
||||
} catch(e) {
|
||||
} catch (e) {
|
||||
if (e.message?.endsWith("decipher algorithm")) {
|
||||
return { error: "youtube.decipher" }
|
||||
} else if (e.message?.includes("refresh access token")) {
|
||||
|
@ -142,7 +142,7 @@ export default async function(o) {
|
|||
let info;
|
||||
try {
|
||||
info = await yt.getBasicInfo(o.id, useHLS ? 'IOS' : 'ANDROID');
|
||||
} catch(e) {
|
||||
} catch (e) {
|
||||
if (e?.info?.reason === "This video is private") {
|
||||
return { error: "content.video.private" };
|
||||
} else if (e?.message === "This video is unavailable") {
|
||||
|
|
|
@ -31,7 +31,7 @@ const runTestsFor = async (service) => {
|
|||
await runTest(url, params, expected);
|
||||
console.log(`${service}/${name}: ok`);
|
||||
|
||||
} catch(e) {
|
||||
} catch (e) {
|
||||
softFails += !canFail;
|
||||
fails++;
|
||||
|
||||
|
@ -93,7 +93,7 @@ switch (action) {
|
|||
try {
|
||||
const { softFails } = await runTestsFor(process.argv[3]);
|
||||
process.exitCode = Number(!!softFails);
|
||||
} catch(e) {
|
||||
} catch (e) {
|
||||
console.error(e);
|
||||
process.exitCode = 1;
|
||||
break;
|
||||
|
|
|
@ -114,7 +114,7 @@ export default class LibAVWrapper {
|
|||
if (name === 'progress.txt') {
|
||||
try {
|
||||
return this.#emitProgress(data);
|
||||
} catch(e) {
|
||||
} catch (e) {
|
||||
console.error(e);
|
||||
}
|
||||
} else if (name !== outputName) return;
|
||||
|
@ -230,4 +230,4 @@ export default class LibAVWrapper {
|
|||
|
||||
this.onProgress(progress);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue