Skip to content

Commit

Permalink
Bugfix prunable
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Sasburg committed Jun 18, 2024
1 parent 1c5696e commit 9b00e14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Models/Email.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public static function boot()

public function prunable()
{
return static::where('created_at', '<=', now())->subDays(config('filament-email.keep_email_for_days', 60));
return static::where('created_at', '<=', now()->subDays(config('filament-email.keep_email_for_days', 60)));
}

private function getTableColumns()
Expand Down

0 comments on commit 9b00e14

Please sign in to comment.