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.
2 parents ccfc74f + 7293c67 commit 59834eaCopy full SHA for 59834ea
src/Services/WebhookService.php
@@ -87,7 +87,8 @@ protected function isStatusCommentEnabled(array $payload): bool
87
{
88
$fieldType = $payload['changes']['field_value']['field_name'] ?? '';
89
90
- return !((string) $fieldType === 'Status'
+ return !(
91
+ (string) $fieldType === 'Status'
92
&& !config('github-project.enable_status_comment')
93
);
94
}
0 commit comments