Skip to content

Commit

Permalink
Merge pull request #3 from cliveholloway/master
Browse files Browse the repository at this point in the history
Fix Dancer request instantiation
  • Loading branch information
miyagawa committed Jun 3, 2022
2 parents 7b9b552 + 68da5e7 commit 6ee24ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dancer.psgi
Expand Up @@ -19,4 +19,4 @@ post '/comment' => sub {
}; };


# return PSGI app # return PSGI app
sub { Dancer->dance( Dancer::Request->new(shift) ) }; sub { Dancer->dance( Dancer::Request->new( env => shift ) ) };

0 comments on commit 6ee24ea

Please sign in to comment.