Server: Fix send_any_file

This commit is contained in:
Arthur Golubtsov
2020-01-21 07:14:52 +03:00
parent 24a0c9e0ca
commit 1320029378

View File

@@ -405,7 +405,7 @@ class MainWindow(QtWidgets.QMainWindow):
if not ok:
return
c_filename, c_filepath = os.path.split(c_path)
c_filepath, c_filename = os.path.split(c_path)
files = [file]
self._send_files(files, client_path=c_filepath, client_filename=c_filename)