aadsm / jsmediatags

Media Tags Reader (ID3, MP4, FLAC)
Other
738 stars 128 forks source link

Fix picture conversion function in README #149

Open csandman opened 2 years ago

csandman commented 2 years ago

There were two issues I noticed when I copied over the example conversion function from ArrayBuffer to Base64 data url.

First, the i index variable is declared as a const when it should be a let.

Second, the data variable is being destructured from the picture tag but never used.

Both of these typos are fixed in this PR