From ebf3791ccaed6645794107d5972a74c91ab73276 Mon Sep 17 00:00:00 2001 From: sbyrd Date: Wed, 2 Dec 2020 21:45:53 -0500 Subject: [PATCH] object are good --- image.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/image.php b/image.php index 69c89d0..a8387aa 100644 --- a/image.php +++ b/image.php @@ -40,6 +40,9 @@ class image extends objectStructs $this->annotations = new imageAnnotations($vars->imageBasic->annotations) ; elseif (isset($vars->annotations)) $this->annotations = new imageAnnotations($vars->annotations) ; + + if (isset($vars->imageConfig)) + $this->config = new imageConfig($vars->imageConfig); } }