Skip to content

Commit

Permalink
fix: casting
Browse files Browse the repository at this point in the history
  • Loading branch information
HDVinnie committed May 6, 2024
1 parent ca58a9a commit 4a1d6ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Services/Unit3dAnnounce.php
Expand Up @@ -230,7 +230,7 @@ public static function addGroup(Group $group): bool
return self::put('groups', [
'id' => $group->id,
'slug' => $group->slug,
'download_slots' => $group->download_slots,
'download_slots' => (int) $group->download_slots,
'is_immune' => (bool) $group->is_immune,
'is_freeleech' => (bool) $group->is_freeleech,
'is_double_upload' => (bool) $group->is_double_upload,
Expand Down

0 comments on commit 4a1d6ef

Please sign in to comment.