diff options
author | George Hazan <ghazan@miranda.im> | 2023-02-25 19:58:46 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2023-02-25 19:58:46 +0300 |
commit | d6f99a48a6855e8ebc860d069b4c61adbd168f90 (patch) | |
tree | 3d4e0af1f9e1290f9fc9e4faf626b8060961e5bd /plugins/Jingle/src | |
parent | 89f4337d2faa3837a3f658ad3d4e359a3a32a08b (diff) |
Jabber: ignore m_bEnableVOIP if no Jingle module installed
Diffstat (limited to 'plugins/Jingle/src')
-rw-r--r-- | plugins/Jingle/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Jingle/src/main.cpp b/plugins/Jingle/src/main.cpp index c52013a244..c95b259422 100644 --- a/plugins/Jingle/src/main.cpp +++ b/plugins/Jingle/src/main.cpp @@ -38,6 +38,6 @@ static INT_PTR FakeService(WPARAM, LPARAM) int CMPlugin::Load() { - CreateServiceFunction("Jingle/StartSession", &FakeService); + CreateServiceFunction(MS_JINGLE_SERVICE, &FakeService); return 0; } |