profile saving

This commit is contained in:
ingvar1995 2016-05-03 20:05:37 +03:00
parent 59c72486f4
commit 4582f6dd9d
1 changed files with 3 additions and 1 deletions

4
bot.py
View File

@ -50,7 +50,7 @@ class Bot(Singleton):
elif '.' in last_part:
index = last_part.index('.')
else:
index = TOX_MAX_MESSAGE_LENGTH - size
index = TOX_MAX_MESSAGE_LENGTH - size - 1
index += size + 1
self._tox.friend_send_message(number, message_type, message[:index])
message = message[index:]
@ -290,6 +290,8 @@ class Bot(Singleton):
if 'm' in settings['auto_rights'] and tox_id not in settings['master']:
settings['master'].append(tox_id)
settings.save()
data = self._tox.get_savedata()
ProfileHelper.save_profile(data)
# -----------------------------------------------------------------------------------------------------------------
# File transfers support