Set ssl-strict false in songloader too

This commit is contained in:
Jonas Kvinge 2020-11-03 18:48:35 +01:00
parent fb0f48f08a
commit 1d6baae6e0

View File

@ -439,6 +439,7 @@ SongLoader::Result SongLoader::LoadRemote() {
errors_ << tr("Couldn't create gstreamer source element for %1").arg(url_.toString());
return Error;
}
g_object_set(source, "ssl-strict", FALSE, nullptr);
// Create the other elements and link them up
GstElement *typefind = gst_element_factory_make("typefind", nullptr);