mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-04-18 10:21:29 +03:00
commented out debug console messages
This commit is contained in:
@@ -98,8 +98,8 @@ export class AppComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public removeFromMp4(name: string) {
|
public removeFromMp4(name: string) {
|
||||||
console.log(name);
|
// console.log(name);
|
||||||
console.log(this.mp4s);
|
// console.log(this.mp4s);
|
||||||
for (let i = 0; i < this.mp4s.length; i++) {
|
for (let i = 0; i < this.mp4s.length; i++) {
|
||||||
if (this.mp4s[i].id === name) {
|
if (this.mp4s[i].id === name) {
|
||||||
this.mp4s.splice(i, 1);
|
this.mp4s.splice(i, 1);
|
||||||
@@ -120,7 +120,7 @@ export class AppComponent implements OnInit {
|
|||||||
this.exists = exists[0];
|
this.exists = exists[0];
|
||||||
if (exists[0] === 'failed') {
|
if (exists[0] === 'failed') {
|
||||||
const percent = exists[2];
|
const percent = exists[2];
|
||||||
console.log(percent);
|
// console.log(percent);
|
||||||
if (percent > 0.30) {
|
if (percent > 0.30) {
|
||||||
this.determinateProgress = true;
|
this.determinateProgress = true;
|
||||||
this.percentDownloaded = percent * 100;
|
this.percentDownloaded = percent * 100;
|
||||||
|
|||||||
Reference in New Issue
Block a user