Skip to content

Commit

Permalink
updated Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Mar 27, 2012
1 parent 9070c58 commit 64fb6a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions Changes
Expand Up @@ -2,6 +2,7 @@ This file documents the revision history for Perl extension Mojolicious.

2.70 2012-03-27
- Improved documentation.
- Fixed small bug in inflate command. (memowe)

2.69 2012-03-26
- Removed X-Forwarded-Host support since it is redundant for well
Expand Down
5 changes: 2 additions & 3 deletions lib/Mojolicious/Command/inflate.pm
Expand Up @@ -13,9 +13,8 @@ sub run {
# Find all embedded files
my $all = {};
my $app = $self->app;
for my $class (@{$app->renderer->classes}, @{$app->static->classes}) {
$all = {%{$self->get_all_data($class) // {}}, %$all};
}
$all = {%{$self->get_all_data($_) || {}}, %$all}
for @{$app->renderer->classes}, @{$app->static->classes};

# Turn them into real files
for my $file (keys %$all) {
Expand Down

0 comments on commit 64fb6a6

Please sign in to comment.