mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
Fix(client): APIコンソールで with credential がオフだとiが付与されないように (#8038)
This commit is contained in:
parent
118f61608d
commit
9c646e5648
1 changed files with 2 additions and 1 deletions
|
@ -66,7 +66,8 @@ export default defineComponent({
|
|||
methods: {
|
||||
send() {
|
||||
this.sending = true;
|
||||
os.api(this.endpoint, JSON5.parse(this.body)).then(res => {
|
||||
const body = JSON5.parse(this.body);
|
||||
os.api(this.endpoint, body, body.i || this.withCredential ? undefined : null).then(res => {
|
||||
this.sending = false;
|
||||
this.res = JSON5.stringify(res, null, 2);
|
||||
}, err => {
|
||||
|
|
Loading…
Add table
Reference in a new issue