in common-lib/src/main/scala/com/gu/workflow/util/StubDecorator.scala [42:47]
private def getDecoratedActualInfo(stub: Stub): Future[Option[DecoratedPrintLocation]] = stub.externalData match {
case Some(externalData) if externalData.actualBookId.isDefined && externalData.actualBookSectionId.isDefined => {
getDecoratedPrintLocation(externalData.actualBookId.get, externalData.actualBookSectionId.get)
}
case _ => Future.successful(None)
}