diff options
author | George Hazan <ghazan@miranda.im> | 2018-03-26 13:48:24 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-03-26 13:48:24 +0300 |
commit | 42706272085db04de11ba586e3e2c8a507e7af0d (patch) | |
tree | 5c6c22ffa6239dc672488bf91c65095944d4dab6 /src/mir_app | |
parent | 0b0d9f28696294beed32d5cdc3f5e93cd996f08e (diff) |
fixes #1212 (virtual protocols contacts)
Diffstat (limited to 'src/mir_app')
-rw-r--r-- | src/mir_app/src/newplugins.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mir_app/src/newplugins.cpp b/src/mir_app/src/newplugins.cpp index f9ff40338f..29346eadc1 100644 --- a/src/mir_app/src/newplugins.cpp +++ b/src/mir_app/src/newplugins.cpp @@ -487,7 +487,7 @@ pluginEntry* OpenPlugin(wchar_t *tszFileName, wchar_t *dir, wchar_t *path) // didn't have basic APIs or DB exports - failed.
p->bFailed = true;
}
- else if (hasMuuid(pIds, MIID_PROTOCOL))
+ else if (hasMuuid(pIds, MIID_PROTOCOL) || !mir_wstrcmpi(tszFileName, L"mradio.dll") || !mir_wstrcmpi(tszFileName, L"watrack.dll"))
p->bIsProtocol = true;
return p;
}
|