diff options
author | rtkay123 <dev@kanjala.com> | 2025-08-15 19:36:22 +0200 |
---|---|---|
committer | rtkay123 <dev@kanjala.com> | 2025-08-15 19:36:22 +0200 |
commit | 1968002d656383069a386bd874c9f0cc83e3116e (patch) | |
tree | 3f37092facf20b1176313428ee6269878529278f /lib/warden-core/src/configuration | |
parent | f5ba1a25cad80bff8c6e01f8d956e212be097ae7 (diff) | |
download | warden-1968002d656383069a386bd874c9f0cc83e3116e.tar.bz2 warden-1968002d656383069a386bd874c9f0cc83e3116e.zip |
feat(rule-exec): receive messages
Diffstat (limited to 'lib/warden-core/src/configuration')
-rw-r--r-- | lib/warden-core/src/configuration/conv.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/warden-core/src/configuration/conv.rs b/lib/warden-core/src/configuration/conv.rs index c5c7768..02f0d27 100644 --- a/lib/warden-core/src/configuration/conv.rs +++ b/lib/warden-core/src/configuration/conv.rs @@ -103,7 +103,7 @@ impl serde::Serialize for GenericParameter { where S: serde::Serializer, { - let json = serde_json::Value::from(self.0.clone()); + let json = self.0.clone(); json.serialize(serializer) } } |