Skip to content

Commit

Permalink
Fixed endless loop bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
pilkch committed Dec 21, 2011
1 parent 05b279b commit a35117d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hideredditrubbish.user.js
Expand Up @@ -22,7 +22,7 @@ var things = siteTable.getElementsByClassName('thing');

// Convert all blacklist words to lower case
var nBlacklistWords = blacklist.length;
for (iBlacklistWords = 0; iBlacklistWords < nBlacklistWord; iBlacklistWords++) {
for (iBlacklistWords = 0; iBlacklistWords < nBlacklistWords; iBlacklistWords++) {
blacklist[iBlacklistWords] = blacklist[iBlacklistWords].toLowerCase();
}

Expand Down

0 comments on commit a35117d

Please sign in to comment.