1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-21 21:15:11 +02:00

Fix bug in iamgick driver Core::last()

This commit is contained in:
Oliver Vogel
2024-01-15 20:29:07 +01:00
parent 4338e00dcd
commit 3154ff9de9

View File

@@ -216,7 +216,7 @@ class Core implements CoreInterface, Iterator
public function last(): FrameInterface
{
return $this->frame($this->count());
return $this->frame($this->count() - 1);
}
public function __clone(): void