diff --git a/ubiquity-client/app/controllers/worker.py b/ubiquity-client/app/controllers/worker.py index c987fcf976111955f8909d2c012547b68c746fec..932e4b89a49f1110a0d1ea005739909f8ab38b98 100644 --- a/ubiquity-client/app/controllers/worker.py +++ b/ubiquity-client/app/controllers/worker.py @@ -69,6 +69,7 @@ class Worker(QObject): Method sending a file by the path :param path: The file path """ + self.file_system_watcher.removePath(path) self.file_system_watcher.addPath(path) try: with open(path, "r", encoding='utf8') as file: diff --git a/ubiquity-client/app/ubiquity-client b/ubiquity-client/app/ubiquity-client index 5bef065910e564ef5deb6e97758138794699daf6..79139180c2aed6c8a949dcb90f487d2e87c7e292 100755 --- a/ubiquity-client/app/ubiquity-client +++ b/ubiquity-client/app/ubiquity-client @@ -12,7 +12,7 @@ from controllers.main_controller import MainController, ErrorMessage class App(QApplication): """Class managing the application""" - VERSION = '20211206' + VERSION = '20211207' def __init__(self, sys_argv): super().__init__(sys_argv)