aboutsummaryrefslogtreecommitdiffstats
path: root/lib/warden-core/src/configuration
diff options
context:
space:
mode:
authorrtkay123 <dev@kanjala.com>2025-08-15 19:36:22 +0200
committerrtkay123 <dev@kanjala.com>2025-08-15 19:36:22 +0200
commit1968002d656383069a386bd874c9f0cc83e3116e (patch)
tree3f37092facf20b1176313428ee6269878529278f /lib/warden-core/src/configuration
parentf5ba1a25cad80bff8c6e01f8d956e212be097ae7 (diff)
downloadwarden-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.rs2
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)
}
}