Skip to content

Commit

Permalink
Merge pull request #7 from CDRV/dev
Browse files Browse the repository at this point in the history
Main merge for 1.0.5 release
  • Loading branch information
SBriere authored May 4, 2023
2 parents e1c3d81 + a9dbf7a commit ac1c1f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Globals.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@

config_man = ConfigManager()

version_string = '1.0.4'
version_string = '1.0.5'
2 changes: 1 addition & 1 deletion libs/servers/WatchServer.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def do_POST(self):
return

# Stop timer to send data, since we received new data
if self.base_server.file_syncher_timer.is_alive():
if self.base_server.file_syncher_timer and self.base_server.file_syncher_timer.is_alive():
self.base_server.file_syncher_timer.cancel()
self.base_server.file_syncher_timer = None

Expand Down

0 comments on commit ac1c1f7

Please sign in to comment.