Skip to content
This repository has been archived by the owner on Feb 7, 2018. It is now read-only.

Commit

Permalink
make sure share count is a number
Browse files Browse the repository at this point in the history
  • Loading branch information
compeak committed Feb 8, 2016
1 parent fab706c commit d8f8061
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Heise/Shariff.pm
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ sub startup {
my $service = $services[$i];

if (defined(my $value = $service->extract_count($transactions[$i]->res))) {
$counts{ $service->get_name } = $value;
$counts{ $service->get_name } = $value + 0;
}
}

Expand Down

0 comments on commit d8f8061

Please sign in to comment.