Skip to content
Snippets Groups Projects
Commit 76a4caf7 authored by Matthew Laird's avatar Matthew Laird Committed by Kieron Taylor
Browse files

Missed one weaken() in the wrong place

parent 267026c8
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,8 @@ has 'context' => (is => 'ro');
sub build_per_context_instance {
my ($self, $c, @args) = @_;
return $self->new({ context => weaken($c), %$self, @args });
weaken($c);
return $self->new({ context => $c, %$self, @args });
}
sub fetch_ga_variantSet {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment