-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
POST:admin/emoji/updateのパラメーターを一部指定で送信すると「name already exists」エラーが出る #14747
Labels
⚠️bug?
This might be a bug
Comments
私の開発環境で該当バージョン( 6de7c27 )をチェックアウトして試したところ、APIコンソールとcurlでのリクエストは正常に完了しました。 # curlの例(bash)
curl -X POST -H "Content-Type: application/json" -d '{"id": "(省略)", "isSensitive": true, "i": "(省略)"}' localhost:3000/api/admin/emoji/update postmanでは未確認です。 |
開発環境が絵文字一個という特殊な環境だったため絵文字を増やしてから実行したところ、該当エラーが再現できました。
ここでnameがundefinedの検索が行われるのが原因と思われます。 |
パラメータから引き込んだnameがundefinedのときはsameNameEmojiの取得及び重複チェックをしないようにする必要がありそうですね |
5 tasks
apiドキュメントの方は、このエンドポイントが「"id"か"name"のどちらかが必要」なのでどちらにもrequiredがつかない感じです。 |
了解しました。ご対応ありがとうございました!!! |
1 task
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
💡 Summary
例えば以下のようなjsonで
POST:admin/emoji/updateを使用して絵文字更新を行おうとすると、
というエラーが出る。
のような形式ですべての項目を指定すると正常に更新できる
あと、apiドキュメントに、requiredの項目が存在しないのが気になる。(画像参照)意図的にそうしている可能性もありそうですが
赤丸のどれかがrequiredになるべきなのでは?
🥰 Expected Behavior
例え以下のようなjsonで
部分的な指定でも正常にアップデートが行える
🤬 Actual Behavior
部分指定で、
POST:admin/emoji/updateを使用して絵文字更新を行おうとすると、
というエラーが出る。
📝 Steps to Reproduce
💻 Frontend Environment
🛰 Backend Environment (for server admin)
Do you want to address this bug yourself?
The text was updated successfully, but these errors were encountered: