Fixing error lint. (#324)

This commit is contained in:
Dessalines 2024-07-31 17:54:25 -04:00 committed by GitHub
parent e9928cf8b7
commit 261791dddc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1526,7 +1526,7 @@ export class LemmyHttp {
try { try {
json = await response.json(); json = await response.json();
} catch (error) { } catch (_) {
throw new Error(response.statusText); throw new Error(response.statusText);
} }