From 7ee6500c3bab3feb3cb89a734a470fcac9df5a01 Mon Sep 17 00:00:00 2001 From: Thulinma Date: Mon, 5 Dec 2011 14:26:53 +0100 Subject: [PATCH] Fix MP3 byte bug --- Connector_HTTP/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Connector_HTTP/main.cpp b/Connector_HTTP/main.cpp index 6ae4ec4b..24d03510 100644 --- a/Connector_HTTP/main.cpp +++ b/Connector_HTTP/main.cpp @@ -368,7 +368,7 @@ namespace Connector_HTTP{ if (extension == ".mp3"){ if (tag.data[0] == 0x08){ if (((tag.data[11] & 0xf0) >> 4) == 2){//mp3 packet - conn.write(tag.data+12, tag.len-15);//write only the MP3 data of the tag + conn.write(tag.data+12, tag.len-16);//write only the MP3 data of the tag } } }else{