1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-24 12:13:16 +00:00

Added missing 'close' for win-userconsent when not dispatched

This commit is contained in:
Bryan Roe
2021-12-14 16:24:59 -08:00
parent bcad1d475b
commit 8962746fbe
2 changed files with 5 additions and 1 deletions

View File

@@ -343,6 +343,10 @@ function createLocal(title, caption, username, options)
{
ret.pump.timeout = setTimeout(pump_onTimeout, options.timeout, ret.pump);
}
ret.close = function close()
{
this.pump.close();
}
return (ret);
}