Eliminated unessecary logic when defining chunk size

Dependencies:   CyaSSL

Dependents:   ECE_4180_Lab_4 IoT_Security_WIFI ESP8266_HTTP_HelloWorld ESP8266_ws_hw ... more

Fork of HTTPClient-SSL by Doug Anson

Revision:
29:2d96cc752d19
Parent:
28:6fbaf49cc109
--- a/data/HTTPText.cpp	Wed Aug 27 18:10:09 2014 +0000
+++ b/data/HTTPText.cpp	Wed Aug 27 20:30:29 2014 +0000
@@ -55,7 +55,7 @@
 
 /*virtual*/ int HTTPText::getDataType(char* type, size_t maxTypeLen) //Internet media type for Content-Type header
 {
-  strncpy(type, "application/json", maxTypeLen-1);
+  strncpy(type, "plain/text", maxTypeLen-1);
   type[maxTypeLen-1] = '\0';
   return OK;
 }