瀏覽代碼

Fix uncaught error when resource param is missing in Webfinger request (#11701)

master^2
Eugen Rochko 4 年之前
committed by GitHub
父節點
當前提交
60e684af5f
沒有發現已知的金鑰在資料庫的簽署中 GPG Key ID: 4AEE18F83AFDEB23
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      app/controllers/well_known/webfinger_controller.rb

+ 1
- 1
app/controllers/well_known/webfinger_controller.rb 查看文件

@@ -11,7 +11,7 @@ module WellKnown

expires_in 3.days, public: true
render json: @account, serializer: WebfingerSerializer, content_type: 'application/jrd+json'
rescue ActiveRecord::RecordNotFound
rescue ActiveRecord::RecordNotFound, ActionController::ParameterMissing
head 404
end



Loading…
取消
儲存