main #19
@ -203,8 +203,13 @@ export default {
 | 
			
		||||
        this.audio.play();
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    reset(container) {
 | 
			
		||||
      this.$store.dispatch("user/resetProgress", container);
 | 
			
		||||
    reset(item) {
 | 
			
		||||
      let parentId = item.parent._id;
 | 
			
		||||
      if (item.parent.parent && item.parent.parent.tracks) {
 | 
			
		||||
        parentId = item.parent.parent._id;
 | 
			
		||||
      }
 | 
			
		||||
      console.log(parentId);
 | 
			
		||||
      this.$store.dispatch("user/resetProgress", parentId);
 | 
			
		||||
 | 
			
		||||
      window.clearInterval(this.intervalProgress);
 | 
			
		||||
      window.clearInterval(this.intervalState);
 | 
			
		||||
 | 
			
		||||
@ -98,12 +98,12 @@ export default {
 | 
			
		||||
        parent.progress = res.data;
 | 
			
		||||
      });
 | 
			
		||||
  },
 | 
			
		||||
  resetProgress(context, item) {
 | 
			
		||||
  resetProgress(context, parentId) {
 | 
			
		||||
    if (context.state._id == -1) {
 | 
			
		||||
      return;
 | 
			
		||||
    }
 | 
			
		||||
    axios
 | 
			
		||||
      .delete(context.rootGetters.server + "/api/user/progress/" + item.album_id, context.rootGetters.headers);
 | 
			
		||||
      .delete(context.rootGetters.server + "/api/user/progress/" + parentId, context.rootGetters.headers);
 | 
			
		||||
  },
 | 
			
		||||
  savePlayerSettings(context) {
 | 
			
		||||
    let body = {
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user