From 6e4db6d81ef49c24e1881051e93d4ef142639345 Mon Sep 17 00:00:00 2001
From: Chaska <166928710+chaskayote@users.noreply.github.com>
Date: Mon, 29 Apr 2024 12:09:21 -0500
Subject: [PATCH] pulling tags didn't work. undoing

---
 lib/philomena/scrapers/inkbunny.ex | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/lib/philomena/scrapers/inkbunny.ex b/lib/philomena/scrapers/inkbunny.ex
index 34508c09..f75bc438 100644
--- a/lib/philomena/scrapers/inkbunny.ex
+++ b/lib/philomena/scrapers/inkbunny.ex
@@ -13,8 +13,6 @@ defmodule Philomena.Scrapers.Inkbunny do
 
     json = Jason.decode!(body)
     [submission] = json["submissions"]
-    tags = submission["keywords"]["keyword_name"]
-
     images = for x <- submission["files"] do
       %{
         url: "#{x["file_url_full"]}",
@@ -24,7 +22,6 @@ defmodule Philomena.Scrapers.Inkbunny do
 
     %{
       source_url: url,
-      tags: tags,
       author_name: submission["username"],
       description: submission["description"],
       images: images