Subject: | fs_encoding not working... |
I think you're doing a string comparison with ==
This
undef $fs_encoding if (defined $fs_encoding and $fs_encoding == 'bytes');
Should be:
undef $fs_encoding if (defined $fs_encoding and $fs_encoding eq 'bytes');
Is there a git repo for this work?
Thanks,
Todd