Skip to content

Commit

Permalink
Merge pull request #412 from triniwiz/master
Browse files Browse the repository at this point in the history
Fixed screenshot bug
  • Loading branch information
Nicolas Joyard committed Aug 13, 2015
2 parents eef4415 + 0f3f378 commit 13b78ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ffprobe.js
Expand Up @@ -162,7 +162,7 @@ module.exports = function(proto) {
var data = parseFfprobeOutput(stdout);

// Handle legacy output with "TAG:x" and "DISPOSITION:x" keys
[data.format].concat(data.streams).forEach(function(target) {
[data].concat(data.streams).forEach(function(target) {
var legacyTagKeys = Object.keys(target).filter(legacyTag);

if (legacyTagKeys.length) {
Expand Down

0 comments on commit 13b78ab

Please sign in to comment.