diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-07-11 13:26:22 +0200 |
|---|---|---|
| committer | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-07-11 13:26:22 +0200 |
| commit | 2565f5be6a2653edbec06ec36f8d5d8bff925da0 (patch) | |
| tree | fd39d9ca95ecc1a7bc62967c47790643bfc7b9d1 /exports | |
| parent | e39b5e8386de46661a8c585c450636abeaac3cc1 (diff) | |
Exports/State: Return error traceback instead of normal error
Diffstat (limited to 'exports')
| -rw-r--r-- | exports/exports.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exports/exports.go b/exports/exports.go index ed47d91..9f5d18c 100644 --- a/exports/exports.go +++ b/exports/exports.go @@ -92,7 +92,7 @@ func ErrorToString(error error) string { return "" } - return error.Error() + return eduvpn.GetErrorTraceback(error) } //export CancelOAuth |
