Skip to content

Commit

Permalink
fixing getmessageids advertiser
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthony Boyer authored and Anthony Boyer committed Mar 29, 2012
1 parent 83cc11e commit 97c5350
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -73,7 +73,7 @@ public void execute(HttpServletRequest request, HttpServletResponse response) th
if ((sort = request.getParameter("sort")) == null)
throw new ParameterException("Missing 'sort' parameter.");

if ((isAdvertiser = request.getParameter("advertiser")) != null)
if (request.getParameter("advertiser") != null)
isAdvertiser = Boolean.toString(Boolean.parseBoolean(isAdvertiser));

if ((stringLimit = request.getParameter("limit")) == null)
Expand Down

0 comments on commit 97c5350

Please sign in to comment.