@@ -66,39 +66,39 @@ public function shouldSend(User $notifiable): bool
66
66
}
67
67
68
68
// Evaluate general settings
69
- if ($ notifiable ->notification ?->block_notifications == 1 ) {
69
+ if ($ notifiable ->notification ?->block_notifications === 1 ) {
70
70
return false ;
71
71
}
72
72
73
73
// Evaluate model based settings
74
74
switch (true ) {
75
75
case $ this ->model instanceof Torrent:
76
- if (! $ notifiable ->notification ?->show_mention_torrent_comment) {
76
+ if ($ notifiable ->notification ?->show_mention_torrent_comment === 0 ) {
77
77
return false ;
78
78
}
79
79
80
80
// If the sender's group ID is found in the "Block all notifications from the selected groups" array,
81
81
// the expression will return false.
82
- return ! \in_array ($ this ->comment ->user ->group_id , $ notifiable ->notification ->json_mention_groups , true );
82
+ return ! \in_array ($ this ->comment ->user ->group_id , $ notifiable ->notification ? ->json_mention_groups ?? [] , true );
83
83
case $ this ->model instanceof TorrentRequest:
84
- if (! $ notifiable ->notification ?->show_mention_request_comment) {
84
+ if ($ notifiable ->notification ?->show_mention_request_comment === 0 ) {
85
85
return false ;
86
86
}
87
87
88
88
// If the sender's group ID is found in the "Block all notifications from the selected groups" array,
89
89
// the expression will return false.
90
- return ! \in_array ($ this ->comment ->user ->group_id , $ notifiable ->notification ->json_mention_groups , true );
90
+ return ! \in_array ($ this ->comment ->user ->group_id , $ notifiable ->notification ? ->json_mention_groups ?? [] , true );
91
91
case $ this ->model instanceof Ticket:
92
92
return ! ($ this ->model ->staff_id === $ this ->comment ->id );
93
93
case $ this ->model instanceof Playlist:
94
94
case $ this ->model instanceof Article:
95
- if (! $ notifiable ->notification ?->show_mention_article_comment) {
95
+ if ($ notifiable ->notification ?->show_mention_article_comment === 0 ) {
96
96
return false ;
97
97
}
98
98
99
99
// If the sender's group ID is found in the "Block all notifications from the selected groups" array,
100
100
// the expression will return false.
101
- return ! \in_array ($ this ->comment ->user ->group_id , $ notifiable ->notification ->json_mention_groups , true );
101
+ return ! \in_array ($ this ->comment ->user ->group_id , $ notifiable ->notification ? ->json_mention_groups ?? [] , true );
102
102
case $ this ->model instanceof Collection:
103
103
break ;
104
104
}
0 commit comments