mirror of
https://github.com/deltachat/deltachat-core.git
synced 2025-10-04 10:19:16 +02:00
slightly improve method name
This commit is contained in:
parent
25a2cdb301
commit
b51006118f
1 changed files with 4 additions and 4 deletions
|
@ -118,7 +118,7 @@ class Chat:
|
||||||
def send_text_message(self, msg):
|
def send_text_message(self, msg):
|
||||||
""" return ID of the message in this chat.
|
""" return ID of the message in this chat.
|
||||||
'msg' should be unicode"""
|
'msg' should be unicode"""
|
||||||
msg = convert_bytes(msg)
|
msg = convert_to_bytes_utf8(msg)
|
||||||
print ("chat id", self.id)
|
print ("chat id", self.id)
|
||||||
return capi.lib.dc_send_text_msg(self.dc_context, self.id, msg)
|
return capi.lib.dc_send_text_msg(self.dc_context, self.id, msg)
|
||||||
|
|
||||||
|
@ -168,8 +168,8 @@ class Account:
|
||||||
return Contact(self.dc_context, capi.lib.DC_CONTACT_ID_SELF)
|
return Contact(self.dc_context, capi.lib.DC_CONTACT_ID_SELF)
|
||||||
|
|
||||||
def create_contact(self, email, name=ffi.NULL):
|
def create_contact(self, email, name=ffi.NULL):
|
||||||
name = convert_bytes(name)
|
name = convert_to_bytes_utf8(name)
|
||||||
email = convert_bytes(email)
|
email = convert_to_bytes_utf8(email)
|
||||||
contact_id = capi.lib.dc_create_contact(self.dc_context, name, email)
|
contact_id = capi.lib.dc_create_contact(self.dc_context, name, email)
|
||||||
return Contact(self.dc_context, contact_id)
|
return Contact(self.dc_context, contact_id)
|
||||||
|
|
||||||
|
@ -253,7 +253,7 @@ class IOThreads:
|
||||||
capi.lib.dc_perform_smtp_idle(self.dc_context)
|
capi.lib.dc_perform_smtp_idle(self.dc_context)
|
||||||
|
|
||||||
|
|
||||||
def convert_bytes(obj):
|
def convert_to_bytes_utf8(obj):
|
||||||
if obj == ffi.NULL:
|
if obj == ffi.NULL:
|
||||||
return obj
|
return obj
|
||||||
if not isinstance(obj, bytes):
|
if not isinstance(obj, bytes):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue