Make master a string.

This commit is contained in:
Mathias Meyer 2014-06-18 11:08:21 +02:00
parent 3f16100247
commit b81b24b3ce

View File

@ -43,7 +43,7 @@ module Travis::Api::App::Responders
end
def branch
params[:branch].present? ? params[:branch] : master
params[:branch].present? ? params[:branch] : 'master'
end
private