Skip to content

Commit

Permalink
Merge pull request #611 from dataswift/dev
Browse files Browse the repository at this point in the history
Data Feed - fix OZM FB datamapper
  • Loading branch information
mudspot authored May 9, 2022
2 parents 10ac44e + dff28f7 commit 30a7f03
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ class OZMFacebookFeedMapper extends DataEndpointMapper {
.getOrElse(
(content \ "story")
.asOpt[String]
.getOrElse((content \ "description").as[String])
.getOrElse((content \ "description").asOpt[String].getOrElse(""))
)}
|
|${(content \ "link")
Expand Down

0 comments on commit 30a7f03

Please sign in to comment.