From 74384905509cd0cfa34d43eb84813d9a8f237c19 Mon Sep 17 00:00:00 2001 From: Nevo David Date: Sun, 17 Mar 2024 10:59:21 +0700 Subject: [PATCH] feat: backend change --- .../nestjs-libraries/src/database/prisma/stars/stars.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/nestjs-libraries/src/database/prisma/stars/stars.service.ts b/libraries/nestjs-libraries/src/database/prisma/stars/stars.service.ts index a315d349..8f2029e3 100644 --- a/libraries/nestjs-libraries/src/database/prisma/stars/stars.service.ts +++ b/libraries/nestjs-libraries/src/database/prisma/stars/stars.service.ts @@ -433,7 +433,7 @@ export class StarsService { async updateGitHubLogin(orgId: string, id: string, login: string) { const check = await fetch(`https://github.com/${login}`); if (check.status === 404) { - throw new HttpException('GitHub repository not found', 404); + throw new HttpException('GitHub repository not found!', 404); } this._workerServiceProducer