Commit 8d86e5da by zhangyang

feat:[none]新增cookie key定义

parent 4fd15147
...@@ -240,6 +240,11 @@ public class Cookie { ...@@ -240,6 +240,11 @@ public class Cookie {
String code = sourceType[sourceType.length - 1]; String code = sourceType[sourceType.length - 1];
userInfos.put(SOURCE_TYPE, code); userInfos.put(SOURCE_TYPE, code);
} }
if (userInfoArry[i].contains(SPREAD_TYPE)) {
String[] tmp = userInfoArry[i].split("=");
String val = tmp[tmp.length - 1];
userInfos.put(SPREAD_TYPE, val);
}
//add by tc //add by tc
if (userInfoArry[i].contains(FIRST_TD)) { if (userInfoArry[i].contains(FIRST_TD)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment