Skip to content

Commit

Permalink
Check matching timecodes wasn't correctly identifying matching timecodes
Browse files Browse the repository at this point in the history
  • Loading branch information
Agrarvolution committed Feb 22, 2024
1 parent 59da37b commit 8435995
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/jsx/KBRG/ThumbnailMetadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -379,9 +379,9 @@ ThumbnailMetadata.prototype.checkMatchingStartTimecodes = function (timecodes) {

return {
filename: this.filename,
isMatching: matchedTimecode.fileTC === this.timecodeMetadata.startTime,
isMatching: matchedTimecode.audioTC.toString() === this.timecodeMetadata.startTime.toString(),
fileTC: this.timecodeMetadata.startTime,
audioTC: matchedTimecode.fileTC
audioTC: matchedTimecode.audioTC
}
}

Expand Down

0 comments on commit 8435995

Please sign in to comment.