Skip to content

Commit 42c3849

Browse files
committed
fix: Remove confusing detail from E020 message
Signed-off-by: Marcel Klehr <[email protected]>
1 parent 2f53a19 commit 42c3849

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

_locales/en/messages.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"message": "E019: HTTP status {0}. Failed {1} request. Check your server configuration and log."
5858
},
5959
"Error020": {
60-
"message": "E020: Could not parse server response. Is the bookmarks app installed on your server?"
60+
"message": "E020: Could not parse server response."
6161
},
6262
"Error021": {
6363
"message": "E021: Inconsistent server state. Folder is present in childorder list but not in folder tree"

src/errors/Error.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ export class HttpError extends FloccusError {
160160
export class ParseResponseError extends FloccusError {
161161
public response: string
162162
constructor(response: string) {
163-
super('E020: Could not parse server response. Is the bookmarks app installed on your server?')
163+
super('E020: Could not parse server response.')
164164
this.code = 20
165165
this.response = response
166166
Object.setPrototypeOf(this, ParseResponseError.prototype)

0 commit comments

Comments
 (0)