all: add space after catch

This commit is contained in:
jj
2024-11-15 12:19:49 +00:00
parent 4c006b2291
commit f7dc6cebad
4 changed files with 7 additions and 7 deletions

View File

@@ -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);
}

View File

@@ -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") {