semantic bufo search find-bufo.com
bufo
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix cooldown: match name format (no extension)

API returns names without extension, alt text converted back
should now match correctly.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

zzstoatzz b104d6e1 54a6be9c

+2 -3
+2 -3
bot/src/bufo_bot/main.py
··· 45 45 if hasattr(media, "images"): 46 46 for img in media.images: 47 47 if img.alt: 48 - # convert alt text back to filename format 49 - recent.add(img.alt.replace(" ", "-") + ".png") 50 - recent.add(img.alt.replace(" ", "-") + ".gif") 48 + # convert alt text back to name format (no extension) 49 + recent.add(img.alt.replace(" ", "-")) 51 50 52 51 logger.info(f"found {len(recent)} bufos posted in last {minutes} minutes") 53 52 return recent