[READ-ONLY] Mirror of https://github.com/probablykasper/yt-email-notifier. macOS menubar app for YouTube upload notification emails
email menubar notifications tray youtube
0

Configure Feed

Select the types of activity you want to include in your feed.

More verbose api error message

Kasper (Apr 14, 2021, 2:45 AM +0200) 091d944d fabb56fb

+3 -1
+3 -1
src/server.js
··· 64 64 }) 65 65 const json = await res.json() 66 66 if (json.error) { 67 - throw { message: 'API error '+json.error.code, error: json.error, url: url } 67 + json.error.message = `API error ${json.error.code}: ${json.error.message}` 68 + json.error.url = url 69 + throw json.error 68 70 } 69 71 return json 70 72 }