Fix calls to deprecated getDateAttribute() for mail packets
All checks were successful
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 39s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 1m47s
Create Docker Image / Final Docker Image Manifest (push) Successful in 9s

This commit is contained in:
2024-06-26 22:44:31 +10:00
parent b891abb611
commit d3c8bc844a
3 changed files with 3 additions and 3 deletions

View File

@@ -116,6 +116,6 @@ final class Mail extends Send
private function youngest(): Carbon
{
return $this->f->messages->pluck('date')->sort()->last();
return $this->f->messages->pluck('datetime')->sort()->last();
}
}