Open sciurius opened 4 months ago
PDF::API2::default_page_size calls PDF::API2::default_page_boundaries, which calls PDF::API2::Page::boundaries.
PDF::API2::default_page_size
PDF::API2::default_page_boundaries
PDF::API2::Page::boundaries
Without arguments, the latter returns a hash, but it is called in scalar context (apparently expecting a hash ref).
This fix changes the call to list (hash) context.
PDF::API2::default_page_size
callsPDF::API2::default_page_boundaries
, which callsPDF::API2::Page::boundaries
.Without arguments, the latter returns a hash, but it is called in scalar context (apparently expecting a hash ref).
This fix changes the call to list (hash) context.