diff --git a/src/features/need/need.controller.ts b/src/features/need/need.controller.ts index a51af41dd..88144026a 100644 --- a/src/features/need/need.controller.ts +++ b/src/features/need/need.controller.ts @@ -307,11 +307,15 @@ export class NeedController { throw new ServerError('huuuh'); } console.log(flaskNeed); - await this.needService.updateNeedContributors( - need.id, - auditor, - purchaser, - ); + try { + await this.needService.updateNeedContributors( + need.id, + auditor, + purchaser, + ); + } catch (e) { + console.log(e); + } } } }