diff --git a/vyxalbot2/github/__init__.py b/vyxalbot2/github/__init__.py
index d82ae2b..953dd11 100644
--- a/vyxalbot2/github/__init__.py
+++ b/vyxalbot2/github/__init__.py
@@ -28,7 +28,8 @@ async def wrapper(self: "GitHubApplication", event: GitHubEvent, services: list[
                 if line == PinThat:
                     await service.pin(ids[-1])
                     continue
-                ids.append(await service.send(line, discordSuppressEmbeds=True))
+                # ZWJ so Bridget ignores it
+                ids.append(await service.send("\u200d" + line, discordSuppressEmbeds=True))
     return wrapper
 
 class GitHubApplication(Application):