Fixed dispatcher
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Dispatcher.pm
index 895d168..4bd49ca 100644 (file)
@@ -66,7 +66,7 @@ sub dispatch {
         }
 
         # Execute the action or last default
-        my $mkay = defined $autorun ? $c->state ? 1 : 0 : 1;
+        my $mkay = $autorun ? $c->state ? 1 : 0 : 1;
         if ( ( my $action = $c->req->action ) && $mkay ) {
             if ( my $result = @{ $c->get_action( $action, $default, 1 ) }[-1] )
             {