mirror of
https://github.com/janeczku/calibre-web
synced 2025-12-09 17:58:06 +00:00
Update load metadata
This commit is contained in:
@@ -58,7 +58,7 @@ class ComicVine(Metadata):
|
||||
"description": "ComicVine Books",
|
||||
"link": "https://comicvine.gamespot.com/"
|
||||
}
|
||||
v['url'] = ""
|
||||
v['url'] = r.get('site_detail_url', "")
|
||||
val.append(v)
|
||||
return val
|
||||
|
||||
|
||||
@@ -48,7 +48,7 @@ class Google(Metadata):
|
||||
"id": self.__id__,
|
||||
"description": "Google Books",
|
||||
"link": "https://books.google.com/"}
|
||||
v['url'] = ""
|
||||
v['url'] = "https://books.google.com/books?id=" + r['id']
|
||||
val.append(v)
|
||||
return val
|
||||
|
||||
|
||||
@@ -52,7 +52,7 @@ class scholar(Metadata):
|
||||
v['ratings'] = 0
|
||||
v['series'] = ""
|
||||
v['cover'] = url_for('static', filename='generic_cover.jpg')
|
||||
v['url'] = ""
|
||||
v['url'] = publication.get('pub_url') or publication.get('eprint_url') or "",
|
||||
v['source'] = {
|
||||
"id": self.__id__,
|
||||
"description": "Google Scholar",
|
||||
|
||||
Reference in New Issue
Block a user