mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-09 19:43:09 +02:00
Fix(client): APIコンソールで with credential がオフだとiが付与されないように (#8038)
This commit is contained in:
parent
8a3f860213
commit
b1bd7307bb
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…
Reference in a new issue