]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-8080 Fix error 500 when format parameter is used in web_api
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Thu, 15 Sep 2016 13:37:25 +0000 (15:37 +0200)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Fri, 16 Sep 2016 13:15:30 +0000 (15:15 +0200)
server/sonar-web/src/main/webapp/WEB-INF/app/controllers/web_api_controller.rb

index d9fe271a94829b0612209a3a960beabe1fbef56f..3d00a1736baa6eb458cca925b62df0f5d8eb3fa5 100644 (file)
@@ -21,7 +21,8 @@
 class WebApiController < ApplicationController
 
   def index
-
+    # Fix a very strange bug that generates a server error when the format parameter is set
+    params[:format] = nil if params[:format]
   end
 
 end