diff options
author | George Hazan <ghazan@miranda.im> | 2023-03-14 17:44:39 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2023-03-14 17:44:39 +0300 |
commit | 012971bfceb38022ac90c47ce9dd8925094580e4 (patch) | |
tree | 4ad542e5e077d3c5c582cbaf5250107eafab8632 /src | |
parent | 349b514f1a37efb3de46cdef0e8ebb0dbcfbbe01 (diff) |
fixes #3404 (wrong nicks in DbEditor, custom nick formatter removed)
Diffstat (limited to 'src')
-rw-r--r-- | src/mir_app/src/modules.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mir_app/src/modules.cpp b/src/mir_app/src/modules.cpp index ff0b6682f2..0db467d25f 100644 --- a/src/mir_app/src/modules.cpp +++ b/src/mir_app/src/modules.cpp @@ -98,6 +98,7 @@ int LoadDefaultModules(void) if (LoadButtonModule()) return 1;
if (LoadIcoLibModule()) return 1;
if (LoadSkinIcons()) return 1;
+ if (LoadContactsModule()) return 1;
// check if a service plugin is scheduled to execution
if (plugin_service != nullptr) {
@@ -130,7 +131,6 @@ int LoadDefaultModules(void) if (LoadProtocolsModule()) return 1;
LoadDbAccounts(); // retrieves the account array from a database
- if (LoadContactsModule()) return 1;
if (LoadMetacontacts()) return 1;
if (LoadNewPluginsModule()) return 1; // will call Load(void) on everything, clist will load first
|