mirror of
https://github.com/stashapp/CommunityScrapers.git
synced 2025-12-11 03:08:29 -06:00
Fix tag output in Redgifs
This commit is contained in:
parent
6288e735f4
commit
2e4e19ceff
@ -7,6 +7,7 @@ import requests
|
||||
|
||||
import py_common.log as log
|
||||
from py_common.cache import cache_to_disk
|
||||
from py_common.types import ScrapedScene
|
||||
from py_common.util import dig, scraper_args
|
||||
|
||||
PROXIES = {}
|
||||
@ -40,7 +41,7 @@ def scrape_id(gif_id: str):
|
||||
|
||||
scene = {
|
||||
"title": gif.get("description"),
|
||||
"tags": gif.get("tags"),
|
||||
"tags": [{"name": t} for t in gif.get("tags")],
|
||||
"date": datetime.fromtimestamp(gif["createDate"]).date().strftime("%Y-%m-%d"),
|
||||
"performers": [],
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user