Skip to content
Snippets Groups Projects
Commit c0743f96 authored by trilene's avatar trilene
Browse files

Fix error message

parent 97681ccf
No related branches found
No related tags found
No related merge requests found
......@@ -75,7 +75,7 @@ WebRTCSession::init(std::string *errorMessage)
for (guint i = 0; i < g_strv_length((gchar**)needed); i++) {
GstPlugin *plugin = gst_registry_find_plugin(registry, needed[i]);
if (!plugin) {
strError += needed[i];
strError += std::string(needed[i]) + " ";
initialised_ = false;
continue;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment