Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugins/bulkImageScrape/BulkImageScrape.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Bulk Image Scrape
# requires: PythonDepManager
description: Apply an image scraper to all images
version: 0.3.5
version: 0.3.6
url: https://discourse.stashapp.cc/t/bulk-image-scrape/1339
exec:
- python
Expand Down
2 changes: 1 addition & 1 deletion plugins/bulkImageScrape/bulkImageScrape.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def update_image(client: StashInterface, update: dict) -> dict | None:

json_input: dict = json.loads(sys.stdin.read())
FRAGMENT_SERVER: dict = json_input["server_connection"]
stash: StashInterface = StashInterface(FRAGMENT_SERVER)
stash: StashInterface = StashInterface(FRAGMENT_SERVER, force_api_key=True)
log.info("Starting Bulk Image Scrape Plugin")

config: dict = stash.get_configuration()["plugins"]
Expand Down
Loading