Skip to content

Commit

Permalink
Removed the sandbox FHIR endpoint from the CuremdWebscraper implement…
Browse files Browse the repository at this point in the history
…ation
  • Loading branch information
rishi-salunkhe-mettle committed Dec 19, 2024
1 parent aa69825 commit bccb143
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func CuremdWebscraper(CHPLURL string, fileToWriteTo string) {
pTag.Find("a").Each(func(i int, link *goquery.Selection) {
url, exists := link.Attr("href")
url = strings.TrimSuffix(url, "/metadata")
if exists {
if exists && !strings.Contains(url, "sandbox") {
entry.URL = url
lanternEntryList = append(lanternEntryList, entry)
}
Expand Down

0 comments on commit bccb143

Please sign in to comment.