Playback error fix, downloading on windows crash fix, logging POC

This commit is contained in:
exttex 2020-09-01 20:37:02 +02:00
parent 736fa01161
commit 96db2c3753
10 changed files with 116 additions and 11 deletions

View file

@ -49,7 +49,7 @@ export default {
try {
let res = await this.$axios.get(`/lyrics/${this.songId}`);
if (res.data) this.lyrics = res.data;
if (res.data && res.data.lyrics.length > 0) this.lyrics = res.data;
} catch (e) {true;}
this.loading = false;