Toggle navigation
Toggle navigation
This project
Loading...
Sign in
YOHOBUY
/
yohobuy-union
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
zhengwen.ge
8 years ago
Commit
ac30c4b425f222fdfe505dd70e2fea85002760de
1 parent
646ce0f3
取消对于channel_code的校验
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
server/src/main/java/com/yoho/unions/server/service/impl/RedirectServiceImpl.java
server/src/main/java/com/yoho/unions/server/service/impl/RedirectServiceImpl.java
View file @
ac30c4b
...
...
@@ -76,10 +76,10 @@ public class RedirectServiceImpl implements IRedirectService {
logger
.
warn
(
"jump: channelId is null, requst param is {}"
,
commonJumpReqVO
);
return
;
}
if
(
StringUtils
.
isEmpty
(
commonJumpReqVO
.
getChannel_code
()))
{
logger
.
warn
(
"jump: trackCode is null, requst param is {}"
,
commonJumpReqVO
);
return
;
}
// if (StringUtils.isEmpty(commonJumpReqVO.getChannel_code())) {
// logger.warn("jump: trackCode is null, requst param is {}", commonJumpReqVO);
// return;
// }
String
redirectUrl
=
builderCommonUrl
(
commonJumpReqVO
);
response
.
setStatus
(
301
);
response
.
sendRedirect
(
redirectUrl
);
...
...
Please
register
or
login
to post a comment