File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 11{
22 "id" : " paper_importer" ,
33 "name" : " Paper Importer" ,
4- "version" : " 1.0.5 " ,
4+ "version" : " 1.0.6 " ,
55 "minAppVersion" : " 1.7.6" ,
66 "description" : " Import papers from arXiv with one click." ,
77 "author" : " Zhe Chen" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " obsidian_paper_importer" ,
3- "version" : " 1.0.5 " ,
3+ "version" : " 1.0.6 " ,
44 "description" : " A plugin to help you import papers from arXiv" ,
55 "main" : " main.js" ,
66 "scripts" : {
Original file line number Diff line number Diff line change @@ -54,7 +54,8 @@ export async function searchPaper(arxivId: string): Promise<Paper> {
5454 entry
5555 . querySelector ( "link[title='pdf']" )
5656 ?. getAttribute ( "href" )
57- ?. trim ( ) || "" ;
57+ ?. trim ( )
58+ ?. replace ( / ^ h t t p : \/ \/ / i, "https://" ) || "" ;
5859
5960 return {
6061 paperId,
You can’t perform that action at this time.
0 commit comments