We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4a5118 commit 7293c67Copy full SHA for 7293c67
src/Services/WebhookService.php
@@ -87,7 +87,8 @@ protected function isStatusCommentEnabled(array $payload): bool
87
{
88
$fieldType = $payload['changes']['field_value']['field_type'] ?? '';
89
90
- return !((string) $fieldType === 'Status'
+ return !(
91
+ (string) $fieldType === 'Status'
92
&& (bool) config('github-project.enable_status_comment') === false
93
);
94
}
0 commit comments