Skip to content

Commit 19cce15

Browse files
authored
Merge pull request #9 from handrews/python
Fix fork inclusion, add python-cloudflare to inclusion list
2 parents d036d4d + e32cc5a commit 19cce15

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

static/javascripts/script.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@
8282
'vpnc-scripts'];
8383

8484
var includeForks = [
85+
'python-cloudflare',
8586
'zlib',
8687
'lua-cmsgpack'
8788
];
@@ -244,7 +245,7 @@
244245
repos = $.grep(repos, function(value) {
245246
var keep = exclude.indexOf(value.name) === -1,
246247
found = false;
247-
if( value.fork && !(value.name in includeForks) ){
248+
if( value.fork && (includeForks.indexOf(value.name) === -1) ){
248249
// ignore most forks.
249250
keep = false;
250251
}

0 commit comments

Comments
 (0)