File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -199,6 +199,7 @@ class SyncDeltaItem:
199199 candownload : bool
200200 canupload : bool
201201 canrename : bool
202+ etag : str
202203
203204
204205@dataclass
Original file line number Diff line number Diff line change @@ -1461,6 +1461,7 @@ def getsyncdelta(
14611461 "path" : sync_folder .path ,
14621462 "status" : f"server,{ sync_folder .update_version } ;" ,
14631463 "permissions" : "1" if with_permissions else "0" ,
1464+ "includeextrafields" : "1" ,
14641465 },
14651466 )
14661467
@@ -1482,6 +1483,7 @@ def getsyncdelta(
14821483 int (entry .findtext ("./candownload" , "0" )) == 1 ,
14831484 int (entry .findtext ("./canupload" , "0" )) == 1 ,
14841485 int (entry .findtext ("./canrename" , "0" )) == 1 ,
1486+ entry .findtext ("./etag" , "" ),
14851487 )
14861488 sync_delta .append (ne )
14871489
Original file line number Diff line number Diff line change 11[tool .poetry ]
22
33name = " filecloudapi-python"
4- version = " 0.5.0 "
4+ version = " 0.5.1 "
55description = " A Python library to connect to a Filecloud server"
66
77packages = [{ include = " filecloudapi" }]
You can’t perform that action at this time.
0 commit comments