Compare commits

..

1 commit

Author SHA1 Message Date
Dessalines
831bf15543 Add open links in new tab. 2023-07-03 18:14:10 -04:00
2 changed files with 1 additions and 5 deletions

View file

@ -1,6 +1,6 @@
{
"name": "lemmy-js-client",
"version": "0.18.1-rc.3",
"version": "0.18.1-rc.2",
"description": "A javascript / typescript client for Lemmy",
"repository": "https://github.com/LemmyNet/lemmy-js-client",
"license": "AGPL-3.0",

View file

@ -1284,10 +1284,6 @@ export class LemmyHttp {
},
});
if (response.status === 413) {
return { msg: "too_large" };
}
const responseJson = await response.json();
if (responseJson.msg === "ok") {