mirror of
https://github.com/wukko/cobalt.git
synced 2025-06-12 05:07:41 +02:00
api/snapchat: prevent errors if params are undefined
This commit is contained in:
@ -102,10 +102,10 @@ export default async function (obj) {
|
||||
params = await resolveRedirectingURL(`https://t.snapchat.com/${obj.shortLink}`);
|
||||
}
|
||||
|
||||
if (params.spotlightId) {
|
||||
if (params?.spotlightId) {
|
||||
const result = await getSpotlight(params.spotlightId);
|
||||
if (result) return result;
|
||||
} else if (params.username) {
|
||||
} else if (params?.username) {
|
||||
const result = await getStory(params.username, params.storyId, obj.alwaysProxy);
|
||||
if (result) return result;
|
||||
}
|
||||
|
Reference in New Issue
Block a user