Skip to content

Commit

Permalink
fixing missing reference
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Philion committed Dec 3, 2024
1 parent be443a8 commit 0171f72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netbot/netbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def append_redmine_note(self, ticket, message: discord.Message) -> None:
log.debug(f"SYNC unknown Discord user: {message.author.name}")
formatted = f'"Discord":{message.jump_url} user *{message.author.name}* said: {message.content}'
# force user_login to None to use default user based on token (the admin)
self.ticket_mgr.append_message(ticket.id, user_login=None, note=formatted)
self.redmine.ticket_mgr.append_message(ticket.id, user_login=None, note=formatted)


async def synchronize_ticket(self, ticket, thread:discord.Thread) -> bool:
Expand Down

0 comments on commit 0171f72

Please sign in to comment.