fix: hangup in plugin rescan

This adds a missing plugins_send_getmanifest() call in the rescan function
that lead to a RPC hangup. Not sure though if this is the proper fix.

Changelog-None
This commit is contained in:
Michael Schmoock 2020-11-11 16:21:43 +01:00 committed by neil saitug
parent 0f2b3c9179
commit 3e42d08c89

View file

@ -141,6 +141,7 @@ plugin_dynamic_rescan_plugins(struct command *cmd)
if (res) if (res)
return res; return res;
plugins_send_getmanifest(cmd->ld->plugins);
return command_still_pending(cmd); return command_still_pending(cmd);
} }