This commit is contained in:
Slipstream 2025-05-09 11:29:07 -06:00
parent 395b62403c
commit a69438e245
Signed by: slipstream
GPG Key ID: 13E498CE010AC6FD
2 changed files with 3 additions and 2 deletions

View File

@ -18,7 +18,7 @@ class CaptionCog(commands.Cog, name="Caption"):
os.path.join("discordbot", "FONT", "sys.ttf") # Bundled fallback
]
async def _add_text_to_gif(self, image_bytes: bytes, caption_text: str):
def _add_text_to_gif(self, image_bytes: bytes, caption_text: str):
"""
Adds text to each frame of a GIF.
The text is placed in a white bar at the top of the GIF.

View File

@ -11,6 +11,7 @@ import typing # Need this for Optional
import uuid # For subscription IDs
import asyncio
import logging # For logging
from datetime import datetime # For parsing ISO format timestamps
# Cache file path
CACHE_FILE = "rule34_cache.json"
@ -979,7 +980,7 @@ class Rule34Cog(commands.Cog, name="Rule34"): # Added name for clarity
f" **Tags:** `{req.get('requested_tags')}`\n"
f" **Target Forum:** {forum_channel_mention}\n"
f" **Proposed Title:** \"{req.get('requested_post_title')}\"\n"
f" **Requested:** {discord.utils.format_dt(discord.utils.parse_isoformat(req.get('request_timestamp')), style='R') if req.get('request_timestamp') else 'Unknown time'}\n"
f" **Requested:** {discord.utils.format_dt(datetime.fromisoformat(req.get('request_timestamp')), style='R') if req.get('request_timestamp') else 'Unknown time'}\n"
f"---"
)