Skip to content

Commit

Permalink
Fix ClassCastException
Browse files Browse the repository at this point in the history
Signed-off-by: Chase Engelbrecht <[email protected]>
  • Loading branch information
engechas committed Feb 16, 2024
1 parent fe38482 commit e646113
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class GetMonitorResponse : BaseResponse {
} else {
out.writeBoolean(false)
}
out.writeList((associatedWorkflows ?: emptyList()) as MutableList<AssociatedWorkflow>?)
out.writeList((associatedWorkflows ?: emptyList<AssociatedWorkflow>()))
}

@Throws(IOException::class)
Expand Down

0 comments on commit e646113

Please sign in to comment.