mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-22 12:21:12 +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,
|
||||
});
|
||||
|
||||
return (await response.status) == 204;
|
||||
return response.status == 204;
|
||||
}
|
||||
|
||||
#buildFullUrl(endpoint: string) {
|
||||
|
|
Loading…
Reference in a new issue