Hello,
When I connect to the irssi screen, I see that error poping up regulary
Code:
10:20 Wide character in print at
/home/user/.irssi/scripts/AutodlIrssi/FileUtils.pm line 61.
The code involved is:
Code:
# Saves raw data to a file
sub saveRawDataToFile {
my ($filename, $data) = @_;
my $fh;
open $fh, ">:raw", $filename or die "Could not create file $filename: $!\n";
print { $fh } $data or die "Could not write to file $filename\n";
close $fh;
}
No idea if there is a real impact, because it seems work well ... but maybe it's better to fix it?
When I connect to the irssi screen, I see that error poping up regulary
Code:
10:20 Wide character in print at
/home/user/.irssi/scripts/AutodlIrssi/FileUtils.pm line 61.
The code involved is:
Code:
# Saves raw data to a file
sub saveRawDataToFile {
my ($filename, $data) = @_;
my $fh;
open $fh, ">:raw", $filename or die "Could not create file $filename: $!\n";
print { $fh } $data or die "Could not write to file $filename\n";
close $fh;
}
No idea if there is a real impact, because it seems work well ... but maybe it's better to fix it?