1.1.3 - Autocompletion fixes, crossfade fixes, more languages

This commit is contained in:
exttex 2020-11-03 21:41:28 +01:00
parent b5771b8a25
commit 7eb047bae1
37 changed files with 354 additions and 172 deletions

View file

@ -140,11 +140,13 @@ export default {
//Delete own playlist
if (this.playlist.user.id == this.$root.profile.id) {
await this.$axios.delete(`/playlist/${this.playlist.id}`);
this.$root.globalSnackbar = this.$t('Playlist deleted!');
} else {
//Remove from library
await this.$axios.get('/library/playlist&id=' + this.playlist.id);
this.$root.globalSnackbar = this.$t('Removed from library!');
}
this.$emit('remove');
},
async download() {