diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-08-05 14:54:14 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-08-05 14:54:14 +0200 |
commit | 8e5264306342619c91bb63e241461de7cb33652e (patch) | |
tree | d0a8278e2ad4a4d5f0f906ce3e83ed7368a20fd3 /skate | |
parent | 7991ef04e4a21fd680bec71c04cca4d47e651ecd (diff) | |
download | refcat-8e5264306342619c91bb63e241461de7cb33652e.tar.gz refcat-8e5264306342619c91bb63e241461de7cb33652e.zip |
map: add note on input data issue
Diffstat (limited to 'skate')
-rw-r--r-- | skate/map.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/skate/map.go b/skate/map.go index 145891d..730726d 100644 --- a/skate/map.go +++ b/skate/map.go @@ -423,6 +423,8 @@ func MapperBrefIdentifierTable(p []byte) (field [][]byte, err error) { SourceDOI string `json:"source_doi,omitempty"` TargetDOI string `json:"target_doi,omitempty"` } + // There is an issue in the data, just skip over it for the moment. + // 2021/08/05 12:15:00 json: expected ',' after object field value but found '"': "} if err := json.Unmarshal(p, &bref); err != nil { return nil, err } |