Fix channel-details not shown (#1785)

Fixes #1784.

Also-by: Florian Hotze <florianh_dev@icloud.com>
Signed-off-by: Jan N. Klug <github@klug.nrw>
pull/1096/merge
J-N-K 2023-03-10 14:57:53 +01:00 committed by GitHub
parent 58d2755b03
commit b885158e07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -57,8 +57,9 @@ export default {
this.configDescription = ct
this.ready = true
}).catch((err) => {
if (err === 404) {
if (err === 'Not Found' || err === 404) {
this.noConfig = true
this.ready = true
}
})
},