Fixed default action in appclass
[catagits/Catalyst-Runtime.git] / lib / Catalyst / DispatchType / Default.pm
index 1c0d5bf..ab9de5e 100644 (file)
@@ -4,10 +4,11 @@ use strict;
 use base qw/Catalyst::DispatchType/;
 
 sub prepare_action {
-    my ($self, $c, $path) = @_;
-    return if $path =~ m!/!; # Not at root yet, wait for it ...
-    my $result = @{$c->get_action('default', $c->req->path, 1) || []}[-1];
-        # Find default on namespace or super
+    my ( $self, $c, $path ) = @_;
+    return if $path =~ m!/!;    # Not at root yet, wait for it ...
+    my $result = @{ $c->get_action( 'default', $c->req->path, 1 ) || [] }[-1];
+
+    # Find default on namespace or super
     if ($result) {
         $c->action( $result->[0] );
         $c->namespace( $c->req->path );