update the presence plugin to match xmpp-parsers 0.5.0

This commit is contained in:
Emmanuel Gil Peyrot 2017-05-28 17:15:02 +01:00
commit 0d7074eb6e
3 changed files with 5 additions and 5 deletions

View file

@ -3,7 +3,7 @@ use std::collections::BTreeMap;
use error::Error;
use plugin::PluginProxy;
pub use xmpp_parsers::presence::{Presence, PresenceType as Type, Show};
pub use xmpp_parsers::presence::{Presence, Type, Show};
pub struct PresencePlugin {
proxy: PluginProxy,
@ -16,7 +16,7 @@ impl PresencePlugin {
}
}
pub fn set_presence(&self, type_: Type, show: Option<Show>, status: Option<String>) -> Result<(), Error> {
pub fn set_presence(&self, type_: Type, show: Show, status: Option<String>) -> Result<(), Error> {
let presence = Presence {
from: None,
to: None,