Fix conversation URL format in pull request links (#9143)

This commit is contained in:
Graham Neubig
2025-06-15 15:41:08 -04:00
committed by GitHub
parent e5bff91e8e
commit 2d2ccf1329
2 changed files with 11 additions and 5 deletions

View File

@@ -27,7 +27,7 @@ mcp_server = FastMCP(
)
HOST = f'https://{os.getenv("WEB_HOST", "app.all-hands.dev").strip()}'
CONVO_URL = HOST + '/{}'
CONVO_URL = HOST + '/conversations/{}'
async def get_convo_link(service: GitService, conversation_id: str, body: str) -> str: