mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-24 22:14:18 +00:00
🐛 Fix race condition
This commit is contained in:
parent
c13e5fff40
commit
5e3ef20785
1 changed files with 5 additions and 4 deletions
|
@ -7,16 +7,17 @@
|
|||
* @returns {(function(): void)|*}
|
||||
*/
|
||||
export default function goToOnSuccess(func, history, destination) {
|
||||
return (...args) => {
|
||||
return async (...args) => {
|
||||
let result
|
||||
try {
|
||||
console.debug("Provando ad eseguire: ", func)
|
||||
result = func(...args)
|
||||
console.debug("Executing: ", func)
|
||||
result = await func(...args)
|
||||
console.debug("Executed successfully: ", func, " moving to a different page.")
|
||||
history.push(destination)
|
||||
return result
|
||||
}
|
||||
catch(e) {
|
||||
console.debug("Esecuzione fallita: ", func, ", non ha fatto nulla.")
|
||||
console.debug("Execution failed: ", func, ", not doing anything.")
|
||||
throw e
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue