Skip to content
Snippets Groups Projects
Commit af6d24c3 authored by John's avatar John
Browse files

Merge branch 'fixing/#379_mr_loading' into 'master'

Fix for issue #379 - making null-safe source_project_id

Closes #379

See merge request Commit451/LabCoat!41
parents cededfb4 46bbf0b9
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -50,7 +50,7 @@ open class MergeRequest {
@field:Json(name = "assignee")
var assignee: User? = null
@field:Json(name = "source_project_id")
var sourceProjectId: Long = 0
var sourceProjectId: Long? = 0
@field:Json(name = "target_project_id")
var targetProjectId: Long = 0
@field:Json(name = "labels")
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment