diff --git a/bin/nexusbot.dart b/bin/nexusbot.dart index 74de2aa..2f528ef 100644 --- a/bin/nexusbot.dart +++ b/bin/nexusbot.dart @@ -150,8 +150,8 @@ If you have any issues, reply to this email.""", await room.sendReaction(event!, "✅"); return Response.found(settings.successUri); - } catch (error) { - final message = "An error occurred: $error"; + } catch (error, stackTrace) { + final message = "An error occurred: $error\n$stackTrace"; try { final room = client.getRoomByAlias(settings.adminRoom)!;