aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/MooseX/AlwaysCoerce.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/MooseX/AlwaysCoerce.pm b/lib/MooseX/AlwaysCoerce.pm
index dd00ba5..2738638 100644
--- a/lib/MooseX/AlwaysCoerce.pm
+++ b/lib/MooseX/AlwaysCoerce.pm
@@ -78,7 +78,7 @@ Use C<< coerce => 0 >> to disable a coercion explicitly.
my ($what, %opts) = @_;
my $type = Moose::Util::TypeConstraints::find_or_parse_type_constraint($opts{isa});
- $opts{coerce} = 1 if !exists $opts{coerce} and $type->has_coercion;
+ $opts{coerce} = 1 if $type and not exists $opts{coerce} and $type->has_coercion;
$self->$next($what, %opts);
};