From d92536aa1d3b494971523a7a651d038792471f38 Mon Sep 17 00:00:00 2001 From: Anon Date: Sun, 16 Oct 2022 15:36:34 -0700 Subject: [PATCH] Updated so tag response returns a list of tags --- src/danbooru_backend.py | 2 +- src/gelbooru_backend.py | 2 +- src/konachan_backend.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/danbooru_backend.py b/src/danbooru_backend.py index abba1ad..135dbba 100644 --- a/src/danbooru_backend.py +++ b/src/danbooru_backend.py @@ -143,7 +143,7 @@ class downloader: "search_url": search_url, "file_url": file_url, "full_path": full_path, - "tag_response": " ".join(tag_response), + "tag_response": tag_response, "nsfw": nsfw } diff --git a/src/gelbooru_backend.py b/src/gelbooru_backend.py index 88a473d..a88e8a7 100644 --- a/src/gelbooru_backend.py +++ b/src/gelbooru_backend.py @@ -177,7 +177,7 @@ class downloader: "search_url": search_url, "file_url": file_url, "full_path": full_path, - "tag_response": " ".join(tag_response), + "tag_response": tag_response, "nsfw": nsfw } diff --git a/src/konachan_backend.py b/src/konachan_backend.py index d767053..9ee50fd 100644 --- a/src/konachan_backend.py +++ b/src/konachan_backend.py @@ -161,7 +161,7 @@ class downloader: "search_url": search_url, "file_url": file_url, "full_path": full_path, - "tag_response": " ".join(tag_response), + "tag_response": tag_response, "nsfw": nsfw }