From 696d8e3c494fabffb4d7735fc3d7aa59c7d38d6a Mon Sep 17 00:00:00 2001 From: Fabien O'Carroll Date: Fri, 22 Oct 2021 14:45:37 +0200 Subject: [PATCH] Added 404 handling for edit Offer no-issue This was also missing as part of the Offers API. --- core/server/api/canary/offers.js | 7 +++++++ 1 file changed, 7 insertions(+) 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] };