mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-26 06:11:14 +00:00
Remove pointless await.
This commit is contained in:
parent
77cd576e14
commit
64c66d47e5
1 changed files with 1 additions and 1 deletions
|
@ -1417,7 +1417,7 @@ export class LemmyHttp {
|
||||||
headers: this.#headers,
|
headers: this.#headers,
|
||||||
});
|
});
|
||||||
|
|
||||||
return (await response.status) == 204;
|
return response.status == 204;
|
||||||
}
|
}
|
||||||
|
|
||||||
#buildFullUrl(endpoint: string) {
|
#buildFullUrl(endpoint: string) {
|
||||||
|
|
Loading…
Reference in a new issue