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
parent
58d2755b03
commit
b885158e07
|
@ -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
|
||||
}
|
||||
})
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue