File tree 1 file changed +13
-3
lines changed
1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -387,10 +387,15 @@ Zotero.Jasminum = new function () {
387
387
var item = items . shift ( ) ;
388
388
if ( [ "patent" , "webpage" ] . includes ( Zotero . ItemTypes . getName ( item . itemTypeID ) ) ) {
389
389
this . Utils . showPopup (
390
- "期刊、引用抓取完毕 " ,
390
+ "条目类型不支持 " ,
391
391
`${ Zotero . ItemTypes . getName ( item . itemTypeID ) } 类型条目不需要抓取`
392
392
)
393
- } else {
393
+ } else if ( item . getField ( "title" ) . search ( / [ _ \u4e00 - \u9fa5 ] / ) === - 1 ) {
394
+ this . Utils . showPopup (
395
+ "条目类型不支持" ,
396
+ `非中文条目`
397
+ )
398
+ } else if ( item . getField ( "url" ) ) {
394
399
let url = item . getField ( "url" ) ;
395
400
let resp = await Zotero . HTTP . request ( "GET" , url ) ;
396
401
let html = this . Utils . string2HTML ( resp . responseText ) ;
@@ -427,6 +432,11 @@ Zotero.Jasminum = new function () {
427
432
Zotero . debug ( "** Jasminum cite number: " + cssci ) ;
428
433
item . setField ( "extra" , extraData . trim ( ) ) ;
429
434
await item . saveTx ( ) ;
435
+ } else {
436
+ this . Utils . showPopup (
437
+ "条目抓取失败" ,
438
+ "缺失条目 URL 信息"
439
+ ) ;
430
440
}
431
441
432
442
if ( items . length ) {
@@ -456,4 +466,4 @@ Zotero.Jasminum = new function () {
456
466
var items = ZoteroPane . getSelectedItems ( ) ;
457
467
for ( var item of items ) { await this . setLanguage ( item ) }
458
468
} ;
459
- } ;
469
+ }
You can’t perform that action at this time.
0 commit comments