mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2026-07-06 19:58:10 +08:00
bug fixed
This commit is contained in:
@@ -97,7 +97,7 @@ template <char KEY>
|
|||||||
class SdpString : public SdpItem{
|
class SdpString : public SdpItem{
|
||||||
public:
|
public:
|
||||||
SdpString() = default;
|
SdpString() = default;
|
||||||
SdpString(string val) {value == std::move(val);}
|
SdpString(string val) {value = std::move(val);}
|
||||||
// *=*
|
// *=*
|
||||||
const char* getKey() const override { static string key(1, KEY); return key.data();}
|
const char* getKey() const override { static string key(1, KEY); return key.data();}
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user