Skip to content

Commit

Permalink
Align debug output with actual processing in fixXMP
Browse files Browse the repository at this point in the history
  • Loading branch information
Agrarvolution committed Feb 1, 2024
1 parent f51df2c commit d243af0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/jsx/KBRG/CacheThumbnails.js
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,10 @@ CacheThumbnails.prototype.updateCache = function (input, method) {
default:
break;
}


if (processed.toString() === 'skipped') {
continue;
}
if (processed) {
this.logCallback(this.mediaCache[i].filename + " - start time / timecode has been updated. (" + this.mediaCache[i].timecodeMetadata.prevStartTime + " -> " +
this.mediaCache[i].timecodeMetadata.startTime + ")", Agrarvolution.logLevels.info, this.logTarget, this.logging);
Expand Down

0 comments on commit d243af0

Please sign in to comment.