Skip to content
Snippets Groups Projects
Commit 3a8c01fb authored by Shane Tomlinson's avatar Shane Tomlinson
Browse files

Doing try catch around the channel complete.

parent 6e733584
No related branches found
No related tags found
No related merge requests found
......@@ -68,7 +68,11 @@ steal.plugins()
errorOut(transaction, error);
}
else {
transaction.complete(status);
try {
transaction.complete(status);
} catch(e) {
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment