diff --git a/translators/EBSCOhost.js b/translators/EBSCOhost.js index 34a0ec9b3..82d7e378e 100644 --- a/translators/EBSCOhost.js +++ b/translators/EBSCOhost.js @@ -115,6 +115,9 @@ function downloadFunction(text) { if (text.match("L3")) { item.DOI = text.match(/L3\s+\-\s*(.*)/)[1]; } + if (text.match("DO")) { + item.DOI = text.match(/DO\s+\-\s*(.*)/)[1]; + } if (text.match("T1")) { item.title = text.match(/T1\s+-\s*(.*)/)[1]; } @@ -181,4 +184,4 @@ function doWeb(doc, url) { } Zotero.wait(); -} \ No newline at end of file +}