aboutsummaryrefslogtreecommitdiff
path: root/src/message/signalproxy/objects/ircchannel.rs
diff options
context:
space:
mode:
authorMax Audron <audron@cocaine.farm>2025-02-23 13:48:19 +0100
committerMax Audron <audron@cocaine.farm>2025-02-23 13:48:19 +0100
commit275b654a17b02d6293341bf8d0bd8f0091527cb3 (patch)
tree5063eedb0862a11493f3392a0068bc0206cff450 /src/message/signalproxy/objects/ircchannel.rs
parentfix ircchannel and maplist network representation (diff)
fix server feature errors
Diffstat (limited to 'src/message/signalproxy/objects/ircchannel.rs')
-rw-r--r--src/message/signalproxy/objects/ircchannel.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/message/signalproxy/objects/ircchannel.rs b/src/message/signalproxy/objects/ircchannel.rs
index 15ed5f3..7d4b0e4 100644
--- a/src/message/signalproxy/objects/ircchannel.rs
+++ b/src/message/signalproxy/objects/ircchannel.rs
@@ -14,6 +14,7 @@ use super::{ChanModes, ChannelModeType};
#[derive(Debug, Clone, PartialEq, Setters, NetworkList, NetworkMap)]
#[network(repr = "maplist")]
pub struct IrcChannel {
+ #[setter(skip)]
#[network(rename = "ChanModes", variant = "VariantMap", network = "map")]
pub chan_modes: ChanModes,
@@ -187,7 +188,7 @@ impl crate::message::StatefulSyncableClient for IrcChannel {
#[cfg(feature = "server")]
impl crate::message::StatefulSyncableServer for IrcChannel {
/// Not Implemented for this type
- fn request_update(&mut self, _param: <IrcChannel as NetworkMap>::Item)
+ fn request_update(&mut self, _param: <IrcChannel as crate::message::NetworkMap>::Item)
where
Self: Sized,
{