Skip to content

Commit ba1818b

Browse files
committed
Fix spell CI
1 parent 28a8779 commit ba1818b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.cspell/dependencies.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ getmeili
99
imagick
1010
imgbb
1111
joypixels
12+
larastan
1213
laravel
1314
linkify
1415
livewire
@@ -31,4 +32,4 @@ theodorejb
3132
typesense
3233
vite
3334
voku
34-
zxcvbn
35+
zxcvbn

app/Http/Controllers/API/TorrentController.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,10 @@ public function store(Request $request): \Illuminate\Http\JsonResponse
171171
$torrent->personal_release = $request->input('personal_release') ?? false;
172172
/** @phpstan-ignore property.notFound (Larastan doesn't yet support loadExists()) */
173173
$torrent->internal = $user->group->is_modo || $user->internals_exists ? ($request->input('internal') ?? 0) : 0;
174+
174175
/** @phpstan-ignore property.notFound (Larastan doesn't yet support loadExists()) */
175176
$torrent->doubleup = $user->group->is_modo || $user->internals_exists ? ($request->input('doubleup') ?? 0) : 0;
177+
176178
/** @phpstan-ignore property.notFound (Larastan doesn't yet support loadExists()) */
177179
$torrent->refundable = $user->group->is_modo || $user->internals_exists ? ($request->input('refundable') ?? false) : false;
178180
$du_until = $request->input('du_until');

0 commit comments

Comments
 (0)