musicmetadata
Advanced tools
Comparing version 2.0.1 to 2.0.2
@@ -53,3 +53,3 @@ 'use strict' | ||
var picDataLen = strtok.UINT32_BE.get(buffer, offset += 4) | ||
picture.data = buffer.slice(offset += 4, offset + picDataLen) | ||
picture.data = new Buffer(buffer.slice(offset += 4, offset + picDataLen)) | ||
@@ -56,0 +56,0 @@ return picture |
@@ -125,3 +125,3 @@ 'use strict' | ||
format: 'image/' + type, | ||
data: data.slice(4) | ||
data: new Buffer(data.slice(4)) | ||
} | ||
@@ -128,0 +128,0 @@ } |
@@ -58,3 +58,3 @@ 'use strict' | ||
description: description, | ||
data: picData.slice(off) | ||
data: new Buffer(picData.slice(off)) | ||
} | ||
@@ -61,0 +61,0 @@ |
{ | ||
"name": "musicmetadata", | ||
"description": "Streaming music metadata parser for node and the browser.", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"author": "Lee Treveil", | ||
@@ -6,0 +6,0 @@ "dependencies": { |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
287811
8501