mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 03:18:49 +03:00
Fix error message
This commit is contained in:
parent
97681ccf64
commit
c0743f9688
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ WebRTCSession::init(std::string *errorMessage)
|
||||||
for (guint i = 0; i < g_strv_length((gchar**)needed); i++) {
|
for (guint i = 0; i < g_strv_length((gchar**)needed); i++) {
|
||||||
GstPlugin *plugin = gst_registry_find_plugin(registry, needed[i]);
|
GstPlugin *plugin = gst_registry_find_plugin(registry, needed[i]);
|
||||||
if (!plugin) {
|
if (!plugin) {
|
||||||
strError += needed[i];
|
strError += std::string(needed[i]) + " ";
|
||||||
initialised_ = false;
|
initialised_ = false;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue