Skip to content

Commit

Permalink
some of these fields can be null
Browse files Browse the repository at this point in the history
  • Loading branch information
softprops committed Apr 4, 2014
1 parent 1287832 commit a049218
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/scala/PullRequested.scala
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ case class PullReq(
title: String,
body: String,
created_at: String,
closed_at: String,
merged_at: String,
closed_at: Option[String],
merged_at: Option[String],
user: User,
merged_by: User,
merged_by: Option[User],
merged: Boolean,
mergeable: Boolean,
mergeable: Option[Boolean],
head: Ref,
base: Ref
)
Expand Down

0 comments on commit a049218

Please sign in to comment.