Commit d9ab7ba6ebf21ac5736fc0b0d982789b0c09ee3e

Authored by Dmitriy Zaporozhets
1 parent 6d07a974

Fixed wrong order of arguments in network graph caused by refactoring

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app/models/network/graph.rb
@@ -98,7 +98,7 @@ module Network @@ -98,7 +98,7 @@ module Network
98 skip: skip 98 skip: skip
99 } 99 }
100 100
101 - Grit::Commit.find_all(@repo, opts, nil) 101 + Grit::Commit.find_all(@repo, nil, opts)
102 end 102 end
103 103
104 def commits_sort_by_ref 104 def commits_sort_by_ref