mirror of
https://github.com/WatchOutNewsAgency/wona.github.com.git
synced 2026-01-01 01:16:26 +00:00
corrected fork skipping logic
This commit is contained in:
@ -18,7 +18,7 @@ github = (function(){
|
||||
var repos = [];
|
||||
var i;
|
||||
for (i = 0; i < data.repositories.length; i++){
|
||||
if (options.skip_forks && !data.repositories[i].fork)
|
||||
if (options.skip_forks && data.repositories[i].fork)
|
||||
continue;
|
||||
repos.push(data.repositories[i]);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user