Subject: | Warning "odd number of elements in hash assignment" |
When you call decoded_content on line 285, you pass a hash reference,
however HTTP::Message line 193 seems to be expecting a plain hash. Line
285 should really be:
my $decontent = $response->decoded_content(charset=>'none);
All of my Perlwikipedia tests still work when making that change.