summaryrefslogtreecommitdiff
path: root/app/controllers/concerns/oauth_applications.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/concerns/oauth_applications.rb')
-rw-r--r--app/controllers/concerns/oauth_applications.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/concerns/oauth_applications.rb b/app/controllers/concerns/oauth_applications.rb
index d97e22df472..055b3e938bd 100644
--- a/app/controllers/concerns/oauth_applications.rb
+++ b/app/controllers/concerns/oauth_applications.rb
@@ -11,7 +11,7 @@ module OauthApplications
scopes = params.fetch(:doorkeeper_application, {}).fetch(:scopes, nil)
if scopes
- params[:doorkeeper_application][:scopes] = scopes.join(' ')
+ params[:doorkeeper_application][:scopes] = scopes.join(" ")
end
end