summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authortrilene <trilene@runbox.com>2020-07-30 19:39:03 -0400
committertrilene <trilene@runbox.com>2020-07-30 19:39:03 -0400
commitc0743f9688e4e0c91d25e48a30afcfefaaf6dae1 (patch)
tree89cc45ba65d348d57b3bc62fa70a4c4d385ee67a /src
parentRemove references to video calls (diff)
downloadnheko-c0743f9688e4e0c91d25e48a30afcfefaaf6dae1.tar.xz
Fix error message
Diffstat (limited to 'src')
-rw-r--r--src/WebRTCSession.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WebRTCSession.cpp b/src/WebRTCSession.cpp

index 9f3b2f70..f3fd1bdc 100644 --- a/src/WebRTCSession.cpp +++ b/src/WebRTCSession.cpp
@@ -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; }