Skip to content

Commit

Permalink
Merge pull request #19 from nouman0103/incorrect-source-patch
Browse files Browse the repository at this point in the history
Fix source being incorrect
  • Loading branch information
nouman0103 authored Apr 16, 2023
2 parents 4ee8c70 + 1f8a976 commit 2d6aa95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion winerp/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ async def _fulfill_request(self, message: WsMessage):
payload.id = self.local_name

try:
payload.data = await func(message.id, **data)
payload.data = await func(message.destination, **data)
if isinstance(payload.data, winerpObject):
self.__parse_object(payload)
except Exception as error:
Expand Down

0 comments on commit 2d6aa95

Please sign in to comment.