Fix dynamic processing
All checks were successful
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 34s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 1m51s
Create Docker Image / Final Docker Image Manifest (push) Successful in 9s

This commit is contained in:
Deon George 2024-10-20 11:08:42 +11:00
parent a2cc1b6b8e
commit 7ba037b76d

View File

@ -46,6 +46,9 @@ final class Dynamic extends Send
case 'mtime': case 'mtime':
return $this->sent->timestamp; return $this->sent->timestamp;
case 'size':
return $this->{$key};
default: default:
return NULL; return NULL;
} }