diff --git a/core/server/api/canary/offers.js b/core/server/api/canary/offers.js index ac35824eb2..8ffe1d2b5f 100644 --- a/core/server/api/canary/offers.js +++ b/core/server/api/canary/offers.js @@ -50,6 +50,13 @@ module.exports = { ...frame.data.offers[0], id: frame.options.id }); + + if (!offer) { + throw new errors.NotFoundError({ + message: tpl(messages.offerNotFound) + }); + } + frame.response = { offers: [offer] };