diff --git a/ks_includes/files.py b/ks_includes/files.py index 4e2dcc75..77bd988c 100644 --- a/ks_includes/files.py +++ b/ks_includes/files.py @@ -126,6 +126,8 @@ class KlippyFiles(): self.add_file(data['item']) elif data['action'] == "delete_file": self.remove_file(data['item']['path']) + elif data['action'] == "modify_file": + self.request_metadata(data['item']['path']) elif data['action'] == "move_file": self.add_file(data['item'], False) self.remove_file(data['source_item']['path'], False)