Merge pull request #3932 from JakubValtar/update-counter

Include Example packs into update count
This commit is contained in:
Ben Fry
2015-09-30 15:14:16 -04:00

View File

@@ -585,6 +585,11 @@ public class ContributionListing {
count++;
}
}
for (ExamplesContribution ec : base.getExampleContribs()) {
if (hasUpdates(ec)) {
count++;
}
}
return count;
}