Remove pointless await.

This commit is contained in:
Dessalines 2023-11-29 12:23:03 -05:00
parent 77cd576e14
commit 64c66d47e5

View file

@ -1417,7 +1417,7 @@ export class LemmyHttp {
headers: this.#headers,
});
return (await response.status) == 204;
return response.status == 204;
}
#buildFullUrl(endpoint: string) {