Skip to content

Commit

Permalink
Update TransportGetFindingsSearchAction.kt
Browse files Browse the repository at this point in the history
  • Loading branch information
Annie Lee committed Mar 30, 2022
1 parent 055a134 commit 3703839
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,8 @@ class TransportGetFindingsSearchAction @Inject constructor(
val doc_ids = finding.relatedDocId.split(",").toTypedArray()
val docs = mutableListOf<FindingDocument>()
for (doc_id in doc_ids) {
val findingDocument = searchDocument(doc_id, finding.index, docs, actionListener)
// TODO: Add the document to docs after searching
val findingDocument = searchDocument(doc_id, finding.index, actionListener)
}
val findingWithDoc = FindingWithDocs(finding, docs)
findingsWithDocs.add(findingWithDoc)
Expand Down

0 comments on commit 3703839

Please sign in to comment.