File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -334,7 +334,7 @@ public function store(Request $request): \Illuminate\Http\JsonResponse
334
334
}
335
335
336
336
// Set torrent to featured
337
- if ($ user ->group ->is_modo || $ user ->group ->is_internal && $ request ->input ('featured ' )) {
337
+ if (( $ user ->group ->is_modo || $ user ->group ->is_internal ) && $ request ->input ('featured ' )) {
338
338
$ featuredTorrent = new FeaturedTorrent ();
339
339
$ featuredTorrent ->user_id = $ user ->id ;
340
340
$ featuredTorrent ->torrent_id = $ torrent ->id ;
@@ -345,7 +345,7 @@ public function store(Request $request): \Illuminate\Http\JsonResponse
345
345
346
346
Unit3dAnnounce::addTorrent ($ torrent );
347
347
348
- if ($ user ->group ->is_modo || $ user ->group ->is_internal && $ request ->input ('featured ' )) {
348
+ if (( $ user ->group ->is_modo || $ user ->group ->is_internal ) && $ request ->input ('featured ' )) {
349
349
Unit3dAnnounce::addFeaturedTorrent ($ torrent ->id );
350
350
}
351
351
You can’t perform that action at this time.
0 commit comments