Kaynağa Gözat

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

master^2
Eugen Rochko 4 yıl önce
committed by GitHub
ebeveyn
işleme
60e684af5f
Veri tabanında bu imza için bilinen anahtar bulunamadı GPG Anahtar Kimliği: 4AEE18F83AFDEB23
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. +1
    -1
      app/controllers/well_known/webfinger_controller.rb

+ 1
- 1
app/controllers/well_known/webfinger_controller.rb Dosyayı Görüntüle

@@ -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



Yükleniyor…
İptal
Kaydet