Skip to content

Commit

Permalink
Merge pull request #14268 from Godmartinz/checked-out-notif-fix
Browse files Browse the repository at this point in the history
Fixed the notification listener
  • Loading branch information
snipe authored Feb 15, 2024
2 parents 3d7697d + b136e9e commit 1fa8fba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Listeners/CheckoutableListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public function onCheckedIn($event)
);
}
//slack doesn't include the url in its messaging format so this is needed to hit the endpoint
if(Setting::getSettings()->webhook_selected =='slack') {
if(Setting::getSettings()->webhook_selected =='slack' || Setting::getSettings()->webhook_selected =='general') {

if ($this->shouldSendWebhookNotification()) {
Notification::route('slack', Setting::getSettings()->webhook_endpoint)
Expand Down

0 comments on commit 1fa8fba

Please sign in to comment.