diff options
Diffstat (limited to 'src/core/wee-command.c')
-rw-r--r-- | src/core/wee-command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/wee-command.c b/src/core/wee-command.c index 95fd7eaa5..03d6dbdd0 100644 --- a/src/core/wee-command.c +++ b/src/core/wee-command.c @@ -3383,7 +3383,7 @@ command_plugin_list (const char *name, int full) ptr_plugin->version, GUI_COLOR(GUI_COLOR_CHAT_DELIMITERS), GUI_COLOR(GUI_COLOR_CHAT), - ptr_plugin->description, + (ptr_plugin->description && ptr_plugin->description[0]) ? _(ptr_plugin->description) : "", ptr_plugin->filename); /* second line of plugin info */ @@ -3626,7 +3626,7 @@ command_plugin_list (const char *name, int full) GUI_COLOR(GUI_COLOR_CHAT_BUFFER), ptr_plugin->name, GUI_COLOR(GUI_COLOR_CHAT), - ptr_plugin->description); + (ptr_plugin->description && ptr_plugin->description[0]) ? _(ptr_plugin->description) : ""); } } } |