Skip to content

Commit

Permalink
#181 M3 fix getISOCodelist
Browse files Browse the repository at this point in the history
  • Loading branch information
eblondel committed Oct 1, 2024
1 parent 2ae60e8 commit 5fe7a40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/ISOCodelist.R
Original file line number Diff line number Diff line change
Expand Up @@ -294,8 +294,8 @@ getISOCodelists <- function(){
#
getISOCodelist <- function(id){
codelist <- NULL
invisible(lapply(getISOInternalCodelists(), function(cl){
if(cl$id == id){
invisible(lapply(getISOInternalCodelists()[[getMetadataStandard()]], function(cl){
if(cl$identifier$value == id){
codelist <<- cl
}
}))
Expand Down

0 comments on commit 5fe7a40

Please sign in to comment.