adding post id for debbuging
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Ekaropolus 2025-07-22 02:32:48 -06:00
parent e9e4862ecf
commit dfede40ae4

View File

@ -176,7 +176,7 @@ class FacebookService:
# Prepend mention if sender_id provided # Prepend mention if sender_id provided
if sender_id: if sender_id:
mention = f"https://www.facebook.com/{sender_id} " mention = f"https://www.facebook.com/{sender_id} "
message = f"{mention}{message}" message = f"{mention}{message}{post_id}"
url = f"{self.base_url}/{post_id}/comments" url = f"{self.base_url}/{post_id}/comments"
payload = {"message": message, "access_token": access_token} payload = {"message": message, "access_token": access_token}