Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get-PDFNamedPageSize has typo on line 66 causing Error: A null key is not allowed in a hash literal. #50

Open
BrooksV opened this issue Apr 28, 2024 · 1 comment
Labels
bug Something isn't working

Comments

@BrooksV
Copy link

BrooksV commented Apr 28, 2024

Line 66
return [PSCustomObject] @{ PageSize = 'Unknown'; $Rotated = $null }
$Rotated needs to be Rotated as it's not a variable but a property name
return [PSCustomObject] @{ PageSize = 'Unknown'; Rotated = $null }

@PrzemyslawKlys PrzemyslawKlys added the bug Something isn't working label Apr 28, 2024
@PrzemyslawKlys
Copy link
Member

Care to create PR?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants