Commit c2303737bacb1053dfbf87bc1a3c4639a52f36f9

Authored by Riyad Preukschas
1 parent 3bcc39b4

Fix double ref_type in push event when removing branch or tag

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app/roles/push_event.rb
@@ -70,7 +70,7 @@ module PushEvent @@ -70,7 +70,7 @@ module PushEvent
70 if new_ref? 70 if new_ref?
71 "pushed new" 71 "pushed new"
72 elsif rm_ref? 72 elsif rm_ref?
73 - "removed #{ref_type}" 73 + "removed"
74 else 74 else
75 "pushed to" 75 "pushed to"
76 end 76 end