Fix recursive first_part
authorMarius Gavrilescu <marius@ieval.ro>
Tue, 8 Jul 2014 07:39:24 +0000 (10:39 +0300)
committerMarius Gavrilescu <marius@ieval.ro>
Tue, 8 Jul 2014 07:39:24 +0000 (10:39 +0300)
lib/App/EdwardNG.pm

index 8343b473d0731756366bfe7761a3ca8e3a10202c..f6b54a4254cffe720246bd503447c89763f024ac 100644 (file)
@@ -33,7 +33,7 @@ sub mg {
 
 sub first_part{
        my ($ent) = @_;
-       return first_part $ent->parts(0) if $ent->parts;
+       return first_part ($ent->parts(0)) if $ent->parts;
        stringify [$ent->bodyhandle->as_lines]
 }
 
This page took 0.010003 seconds and 4 git commands to generate.