forked from FoundKeyGang/FoundKey
parent
7aecf15f94
commit
fa554f1684
2 changed files with 2 additions and 1 deletions
|
@ -25,6 +25,7 @@
|
||||||
- Unifying Misskey-specific IRIs in JSON-LD `@context`
|
- Unifying Misskey-specific IRIs in JSON-LD `@context`
|
||||||
|
|
||||||
### Bugfixes
|
### Bugfixes
|
||||||
|
- アップロードエラー時の処理を修正
|
||||||
|
|
||||||
## 12.101.1 (2021/12/29)
|
## 12.101.1 (2021/12/29)
|
||||||
|
|
||||||
|
|
|
@ -570,7 +570,7 @@ export function upload(file: File, folder?: any, name?: string): Promise<Misskey
|
||||||
const xhr = new XMLHttpRequest();
|
const xhr = new XMLHttpRequest();
|
||||||
xhr.open('POST', apiUrl + '/drive/files/create', true);
|
xhr.open('POST', apiUrl + '/drive/files/create', true);
|
||||||
xhr.onload = (ev) => {
|
xhr.onload = (ev) => {
|
||||||
if (ev.target == null || ev.target.response == null) {
|
if (xhr.status !== 200 || ev.target == null || ev.target.response == null) {
|
||||||
// TODO: 消すのではなくて再送できるようにしたい
|
// TODO: 消すのではなくて再送できるようにしたい
|
||||||
uploads.value = uploads.value.filter(x => x.id != id);
|
uploads.value = uploads.value.filter(x => x.id != id);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue