scm: git: use to_s for branches at model (#5501)

"scm.branches" will extend to have the revision for the branch.
no "to_s" will have a problem.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7653 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-10-25 14:57:34 +00:00
parent 520a8e6f15
commit 55c98d4297
1 changed files with 2 additions and 1 deletions

View File

@ -129,7 +129,8 @@ class Repository::Git < Repository
merge_extra_info(h)
self.save
end
scm_brs.each do |br|
scm_brs.each do |br1|
br = br1.to_s
from_scmid = nil
from_scmid = h["branches"][br]["last_scmid"] if h["branches"][br]
h["branches"][br] ||= {}