To remove this bug please open QRcode.pm file, search for first
occurence of word "die" and replace it with word "return" :-)
Original code:
----------------------------------
elsif ($iTotalBits > $iMaxDatBits){
die "Overflow error. version $oSelf->{Version}\n" .
"total bits: $iTotalBits max bits: $iMaxDatBits\n";
}
----------------------------------
New code:
----------------------------------
elsif ($iTotalBits > $iMaxDatBits){
return "Overflow error. version $oSelf->{Version}\n" .
"total bits: $iTotalBits max bits: $iMaxDatBits\n";
}
----------------------------------