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