mirror of
https://github.com/misskey-dev/misskey.git
synced 2024-12-22 21:45:13 +01:00
misskey-js: APIClientにURL末尾の/を除去する処理を追加 (#15132)
This commit is contained in:
parent
e8bf6285cb
commit
234d91a884
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ export class APIClient {
|
|||
credential?: APIClient['credential'];
|
||||
fetch?: APIClient['fetch'] | null | undefined;
|
||||
}) {
|
||||
this.origin = opts.origin;
|
||||
this.origin = opts.origin.replace(/\/$/, '');
|
||||
this.credential = opts.credential;
|
||||
// ネイティブ関数をそのまま変数に代入して使おうとするとChromiumではIllegal invocationエラーが発生するため、
|
||||
// 環境で実装されているfetchを使う場合は無名関数でラップして使用する
|
||||
|
|
Loading…
Reference in a new issue