Subject: | stdin argument does not work |
The argument providing stdin doesn't work as intended.
Quick patch:
82,83c82,83
< defined($stdin)
< ? (from => join "\n", @$stdin)
---
Show quoted text
> defined($args{stdin})
> ? (from => join "\n", @{$args{stdin}})