Skip to content

Commit

Permalink
[Quick Fix] WorkflowService
Browse files Browse the repository at this point in the history
  • Loading branch information
jm.pascal committed Oct 29, 2013
1 parent 41f11e7 commit bf2d15c
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 bf2d15c

Please sign in to comment.