We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b38cba commit 3cdf60dCopy full SHA for 3cdf60d
CHANGELOG.md
@@ -12,6 +12,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
12
### Changed
13
- both Literal and JSON DateTimes has Timezone set to UTC - Jakub Filak
14
15
+### Fixed
16
+- use correct type of deserialization of Literal (URL) structure values - Jakub Filak
17
18
## [1.4.0]
19
pyodata/v2/model.py
@@ -551,7 +551,7 @@ def from_json(self, value):
551
return EdmStructTypeSerializer.from_json(self._edm_type, value)
552
553
def from_literal(self, value):
554
- return EdmStructTypeSerializer.from_json(self._edm_type, value)
+ return EdmStructTypeSerializer.from_literal(self._edm_type, value)
555
556
557
class EnumTypTrait(TypTraits):
0 commit comments