# HG changeset patch # User Sadrul Habib Chowdhury # Date 1189059962 0 # Node ID 6e9a16deb5b191928bde09a86d6ca83589596f46 # Parent 941965d6fd8845d17748c9900a5bb42a2f60a847 Fix the plugin loading issue Luke had noticed. This is a pretty weird bug that would've affected any new plugins being loaded. This bug remained hidden because we used to load the list of loaded plugins later. So this line, which I think was a typo to begin with, essentially didn't affect anything. Now that we load the preferences early, it was causing the list of loaded plugins to be rewritten at startup. diff -r 941965d6fd88 -r 6e9a16deb5b1 finch/gntui.c --- a/finch/gntui.c Wed Sep 05 22:33:22 2007 +0000 +++ b/finch/gntui.c Thu Sep 06 06:26:02 2007 +0000 @@ -91,8 +91,6 @@ gnt_register_action(_("Statuses"), finch_savedstatus_show_all); #ifdef STANDALONE - - finch_plugins_save_loaded(); } void gnt_ui_uninit()