Skip to content

Commit

Permalink
Merge pull request #72 from jmpascal/master
Browse files Browse the repository at this point in the history
[Quick Fix] WorkflowService
  • Loading branch information
JM.PASCAL committed Oct 29, 2013
2 parents 84ff35e + bf2d15c commit efbbbaf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ public PagingResult<Task> getTasks(Process process, ListingContext listingContex
Messagesl18n.getString("ErrorCodeRegistry.GENERAL_INVALID_ARG_NULL"), "process")); }

String link = OnPremiseUrlRegistry.getTasksForProcessIdUrl(session, process.getIdentifier());
if (listingContext.getFilter() != null)
if (listingContext != null && listingContext.getFilter() != null)
{
ListingFilter lf = listingContext.getFilter();
if (lf.hasFilterValue(FILTER_KEY_STATUS)
Expand Down

0 comments on commit efbbbaf

Please sign in to comment.