0
1
mirror of https://github.com/profanity-im/profanity.git synced 2025-07-25 10:34:39 -04:00

Fail plugin unload operation if plugin does not exist

This commit is contained in:
Philip Flohr 2018-04-21 08:53:43 +02:00 committed by Philip Flohr
parent 34aa7a717c
commit d1c54e9aaa

View File

@ -296,9 +296,10 @@ plugins_unload(const char *const name)
resource_presence_t last_presence = accounts_get_last_presence(account_name);
cl_ev_presence_send(last_presence, 0);
}
}
return TRUE;
}
return FALSE;
}
void
plugins_reload_all(void)