Skip to content

Commit

Permalink
Remove the extra ->res
Browse files Browse the repository at this point in the history
  • Loading branch information
briandfoy committed Mar 9, 2023
1 parent 243cf89 commit c436e8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Module/Release/WebUpload/Mojo.pm
Expand Up @@ -66,7 +66,7 @@ sub web_upload {
);

if( my $res = eval { $tx->result->is_success } ) {
$self->_debug( "Response headers:\n" . $tx->result->res->to_string . "\n" );
$self->_debug( "Response headers:\n" . $tx->res->to_string . "\n" );
$self->_print( "File uploaded\n" );
return 1;
}
Expand Down

0 comments on commit c436e8b

Please sign in to comment.