Skip to content

Commit

Permalink
Fix channel-details not shown (openhab#1785)
Browse files Browse the repository at this point in the history
Fixes openhab#1784.

Also-by: Florian Hotze <florianh_dev@icloud.com>
Signed-off-by: Jan N. Klug <github@klug.nrw>
  • Loading branch information
J-N-K authored Mar 10, 2023
1 parent 58d2755 commit b885158
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
})
},
Expand Down

0 comments on commit b885158

Please sign in to comment.