Commit 6cd745c2f794049eea3d6833dd0f70923c0618ad

Authored by Jeppe Toustrup
1 parent 5c1a360f

Removed hash from "<user> #pushed to branch..." Hipchat notification

app/models/project_services/hipchat_service.rb
... ... @@ -61,7 +61,7 @@ class HipchatService &lt; Service
61 61 elsif after =~ /000000/
62 62 message << "removed branch #{ref} from <a href=\"#{project.web_url}\">#{project.name_with_namespace.gsub!(/\s/,'')}</a> \n"
63 63 else
64   - message << "#pushed to branch <a href=\"#{project.web_url}/commits/#{ref}\">#{ref}</a> "
  64 + message << "pushed to branch <a href=\"#{project.web_url}/commits/#{ref}\">#{ref}</a> "
65 65 message << "of <a href=\"#{project.web_url}\">#{project.name_with_namespace.gsub!(/\s/,'')}</a> "
66 66 message << "(<a href=\"#{project.web_url}/compare/#{before}...#{after}\">Compare changes</a>)"
67 67 for commit in push[:commits] do
... ...