summary refs log tree commit diff
path: root/lib/githubexplorer
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2010-02-10 11:11:01 +0100
committerfranck cuny <franck@lumberjaph.net>2010-02-10 11:11:01 +0100
commit25e5f981db6997ecf1c22002e26c9225eef7d536 (patch)
tree13128846223ad95423ab6f924c98e6ad21a416ca /lib/githubexplorer
parentupdate to create graph (diff)
downloadgithub-explorer-25e5f981db6997ecf1c22002e26c9225eef7d536.tar.gz
typo
Diffstat (limited to 'lib/githubexplorer')
-rw-r--r--lib/githubexplorer/Network.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/githubexplorer/Network.pm b/lib/githubexplorer/Network.pm
index e3c4765..7e836ff 100644
--- a/lib/githubexplorer/Network.pm
+++ b/lib/githubexplorer/Network.pm
@@ -15,7 +15,7 @@ sub fetch_network {
     );
 
     my $edges = $api_repos->network();
-    foreach my $edge (@$network) {
+    foreach my $edge (@$edges) {
         next if $edge->{owner} eq $repos->id_profile->login;
         my $profile = $self->schema->resultset('Profiles')
             ->find( { login => $edge->{owner} } );