Merge pull request #4164 from hiroponz/fix-postgres-error

Fix postgres error when displaying network graph.
This commit is contained in:
Dmitriy Zaporozhets 2013-06-06 09:25:55 -07:00
commit c0d7b5bb70
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ module Network
def collect_notes
h = Hash.new(0)
@project.notes.where('noteable_type = ?' ,"Commit").group('notes.commit_id').select('notes.commit_id, count(notes.id) as note_count').each do |item|
h[item["commit_id"]] = item["note_count"]
h[item.commit_id] = item.note_count.to_i
end
h
end