[web] Remove lint rule

This commit is contained in:
Alain Nussbaumer
2025-06-02 20:06:17 +02:00
parent 99ef7b8dfc
commit 5018cc4544
3 changed files with 4 additions and 7 deletions

View File

@@ -114,7 +114,7 @@ export default {
this.uiStore.hideSingles = this.configurationStore.hide_singles
document.title = this.configurationStore.library_name
this.openWebsocket()
} catch (e) {
} catch {
this.notificationsStore.add({
text: this.$t('server.connection-failed'),
topic: 'connection',

View File

@@ -21,7 +21,7 @@ export default {
stop() {
try {
this.audio?.pause()
} catch (error) {
} catch {
// Do nothing
}
}