Skip to content

Commit

Permalink
Adjust new lines in key contents (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus authored Oct 13, 2022
1 parent 70b583e commit cf3377f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/bots/src/github-webhook/github-webhook.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class GithubWebhookService {
auth: {
appId: Number(configService.get('github.appId')),
installationId: Number(configService.get('github.installationId')),
privateKey: configService.get('github.keyContents'),
privateKey: configService.get('github.keyContents').replace(/\\\n/g, '\n'),
},
});
}
Expand Down

0 comments on commit cf3377f

Please sign in to comment.