jingle_s5b: Remove unused .to_owned() during serialisation.
This commit is contained in:
parent
6794b34714
commit
ee34bc1a86
1 changed files with 1 additions and 1 deletions
|
@ -221,7 +221,7 @@ impl Into<Element> for Transport {
|
||||||
TransportPayload::CandidateUsed(ref cid) => {
|
TransportPayload::CandidateUsed(ref cid) => {
|
||||||
vec!(Element::builder("candidate-used")
|
vec!(Element::builder("candidate-used")
|
||||||
.ns(ns::JINGLE_S5B)
|
.ns(ns::JINGLE_S5B)
|
||||||
.attr("cid", cid.to_owned())
|
.attr("cid", cid)
|
||||||
.build())
|
.build())
|
||||||
},
|
},
|
||||||
TransportPayload::ProxyError => {
|
TransportPayload::ProxyError => {
|
||||||
|
|
Loading…
Reference in a new issue