diff options
author | George Hazan <ghazan@miranda.im> | 2023-02-27 19:02:30 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2023-02-27 19:02:30 +0300 |
commit | e4c5a1ea23300d53ab34b14ed1ed47187f700074 (patch) | |
tree | 2902ab770a6ee42b25c080135820e2d21de0d8ee /plugins/Jingle/src | |
parent | e21b7c0709d3e8285bb6e94dc400684ef8a8bf36 (diff) |
fixes #3349 (Jingle: gst plugins not found)
Diffstat (limited to 'plugins/Jingle/src')
-rw-r--r-- | plugins/Jingle/src/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/Jingle/src/main.cpp b/plugins/Jingle/src/main.cpp index c95b259422..5936eb7fc9 100644 --- a/plugins/Jingle/src/main.cpp +++ b/plugins/Jingle/src/main.cpp @@ -38,6 +38,8 @@ static INT_PTR FakeService(WPARAM, LPARAM) int CMPlugin::Load() { + SetEnvironmentVariableW(L"GST_PLUGIN_PATH", VARSW(L"%miranda_path%\\Libs\\gst_plugins")); + CreateServiceFunction(MS_JINGLE_SERVICE, &FakeService); return 0; } |