Skip to content

Commit

Permalink
Fixed scoring bug
Browse files Browse the repository at this point in the history
  • Loading branch information
tvroom committed May 22, 2008
1 parent 49222ea commit e0191a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/FireHose/FireHose.pm
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ sub createItemFromComment {
my $comment = $self->getComment($cid);
my $text = $self->getCommentText($cid);
my $globjid = $self->getGlobjidCreate("comments", $cid);
my $score = constrain_score($comment->{points} + $comment->{tweak} >= 3);
my $score = constrain_score($comment->{points} + $comment->{tweak});

my($popularity, $editorpop);
$editorpop = $self->getEntryPopularityForColorLevel(4);
Expand Down

0 comments on commit e0191a8

Please sign in to comment.