Skip to content

Commit

Permalink
Merge pull request mukulhase#472 from Brandon2255p/master
Browse files Browse the repository at this point in the history
Fixed issue on chat.get_messages()
  • Loading branch information
mukulhase authored Oct 2, 2018
2 parents f34b901 + dda895c commit acbc425
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webwhatsapi/objects/chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def send_seen(self):
return self.driver.chat_send_seen(self.id)

def get_messages(self, include_me=False, include_notifications=False):
return list(self.driver.chat_get_messages(self.id, include_me, include_notifications))
return list(self.driver.get_all_messages_in_chat(self, include_me, include_notifications))


def get_unread_messages(self,
Expand Down

0 comments on commit acbc425

Please sign in to comment.