Browse Source

Fixed very difficult issue, that was totally not a derp.

Vos 7 years ago
parent
commit
7e34f71b5d
1 changed files with 0 additions and 1 deletions
  1. 0 1
      frontend/components/Modals/Playlists/Edit.vue

+ 0 - 1
frontend/components/Modals/Playlists/Edit.vue

@@ -94,7 +94,6 @@
 		},
 		methods: {
 			formatTime: function (length) {
-				length = 1000000;
 				let duration = moment.duration(length, 'seconds');
 				function getHours() {return Math.floor(duration.asHours());}
 				if (length <= 0) return '0 seconds';