4 Commits

Author SHA1 Message Date
cc37485fc0 Removed dns test because toxme is down 2020-05-23 18:37:07 +03:00
028de8176b Used pyqt5 v5.14 2020-05-23 18:27:34 +03:00
2e285a8400 Used pip3 explicitly 2020-05-23 18:23:50 +03:00
cf912b137d Fixed travis build 2020-05-23 18:15:54 +03:00
2 changed files with 2 additions and 4 deletions

View File

@ -951,9 +951,7 @@ class Profile(basecontact.BaseContact, Singleton):
file_number) file_number)
elif auto: elif auto:
path = settings['auto_accept_path'] path = settings['auto_accept_path'] or curr_directory()
if not path or not os.path.exists(path):
path = curr_directory()
self.accept_transfer(None, path + '/' + file_name, friend_number, file_number, size) self.accept_transfer(None, path + '/' + file_name, friend_number, file_number, size)
tm = TransferMessage(MESSAGE_OWNER['FRIEND'], tm = TransferMessage(MESSAGE_OWNER['FRIEND'],
time.time(), time.time(),

View File

@ -5,7 +5,7 @@ import sys
import re import re
program_version = '0.4.4' program_version = '0.4.3'
def cached(func): def cached(func):