diff --git a/src/Request.cs b/src/Request.cs index 2d86473..e61bdfa 100644 --- a/src/Request.cs +++ b/src/Request.cs @@ -89,7 +89,7 @@ public Request( string method, string uri, WWWForm form ) this.method = method; this.uri = new Uri (uri); this.byteStream = new MemoryStream(form.data); -#if UNITY_5 +#if UNITY_5 || UNITY_5_3_OR_NEWER foreach ( var entry in form.headers ) { this.AddHeader( entry.Key, entry.Value );