Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed #2
  • Loading branch information
andot committed Jun 15, 2016
1 parent f477b6a commit 3edea11
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions hprose/_.aau
Expand Up @@ -14,7 +14,7 @@
* *
* Hprose library for AAuto Quicker *
* *
* LastModified: Apr 26, 2014 *
* LastModified: Jun 15, 2016 *
* Author: Ma Bingyao <andot@hprose.com> *
* *
\**********************************************************/
Expand Down Expand Up @@ -1499,7 +1499,9 @@ namespace hprose {
for (i = 2; #cookies; 1) {
cookieStr = ..string.trim(cookies[[i]]);
pos = ..string.indexAny(cookieStr, '=');
cookie[..string.upper(..string.left(cookieStr, pos - 1))] = ..string.right(cookieStr, #cookieStr - pos);
if (pos !== null) {
cookie[..string.upper(..string.left(cookieStr, pos - 1))] = ..string.right(cookieStr, #cookieStr - pos);
}
}
// Tomcat can return SetCookie2 with path wrapped in "
if (cookie['PATH']) {
Expand Down Expand Up @@ -1733,4 +1735,4 @@ hprose.TcpClient() = !hproseTcpClient.
!hproseTcpClient.����˺�����() = @.__/*����˺�����*/
hprose.serialize(__) = ���л����ڶ���������ʾ�Ƿ�����ģʽ��Ĭ��Ϊ��
hprose.unserialize(__) = �����л����ڶ���������ʾ�Ƿ�����ģʽ��Ĭ��Ϊ��
end intellisense**/
end intellisense**/

0 comments on commit 3edea11

Please sign in to comment.