diff --git a/CHANGELOG.MD b/CHANGELOG.MD index 68069e3..9bab74a 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -1,10 +1,14 @@ # Change Log +## [Version 1.1.3] + +- minor fix to prevent console error log on fetch failure + ## [Version 1.1.2] - changed service worker open notification to use app.yup.io - fixed follow notification with multiple senders - + ## [Version 1.1.1] - changed auth condition diff --git a/manifest.json b/manifest.json index cbd3633..bfcfd8d 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "name": "yup live", "description": "Light extension helper for yup social platform.", - "version": "1.1.2", + "version": "1.1.3", "manifest_version": 3, "icons": { "16": "src/assets/icons/yup_ext_16.png", diff --git a/src/background/index.ts b/src/background/index.ts index 71cf9d1..f451012 100644 --- a/src/background/index.ts +++ b/src/background/index.ts @@ -101,6 +101,7 @@ const alarmHandler = async () => { }) } requests.coinGecko = fetch('https://api.coingecko.com/api/v3/simple/price?ids=yup&vs_currencies=usd') + requests.coinGecko.catch(console.warn) try { const profile = await requests.profile as Response