We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dcc740d + 5b63abc commit 2e18d69Copy full SHA for 2e18d69
fix-webm-duration.js
@@ -445,10 +445,10 @@
445
var durationSection = infoSection.getSectionById(0x489);
446
if (durationSection) {
447
if (durationSection.getValue() <= 0) {
448
- logger('[fix-webm-duration] Duration section is present, but the value is empty');
+ logger(`[fix-webm-duration] Duration section is present, but the value is ${durationSection.getValue()}`);
449
durationSection.setValue(duration);
450
} else {
451
- logger('[fix-webm-duration] Duration section is present');
+ logger(`[fix-webm-duration] Duration section is present, and the value is ${durationSection.getValue()}`);
452
return false;
453
}
454
0 commit comments