summary refs log tree commit diff
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2010-02-10 11:10:45 +0100
committerfranck cuny <franck@lumberjaph.net>2010-02-10 11:10:45 +0100
commitbbae985ddf831ba98d8fd34bb7d0ca8d9b62f1fd (patch)
treef78dce722cb9a9520c02daa16b002cd3297d9a68
parentfix (diff)
parenttypo (diff)
downloadgithub-explorer-bbae985ddf831ba98d8fd34bb7d0ca8d9b62f1fd.tar.gz
Merge branch 'master' of git@lj:github-explorer
* 'master' of git@lj:github-explorer:
  typo
-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} } );