Skip to content

Commit

Permalink
WCM-285: if you can write into a column, just write the column and no…
Browse files Browse the repository at this point in the history
…t into the unsorted field
  • Loading branch information
stollero committed Sep 25, 2024
1 parent c6b0946 commit 07faac0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/zeit/cms/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '6.39.0'
__version__ = '6.40.0.dev0'
1 change: 1 addition & 0 deletions core/src/zeit/connector/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,7 @@ def from_webdav(self, props):
value = props.get((name, self.NS + namespace), self)
if value is not self:
setattr(self, column.name, value)
props.pop((name, self.NS + namespace), None)

unsorted = collections.defaultdict(dict)
for (k, ns), v in props.items():
Expand Down

0 comments on commit 07faac0

Please sign in to comment.