Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several changes to improve error handling, command registration, and the main function configuration in the project. The most important changes include improvements to the
SelectChannel
command, enhancements to error reporting, and adjustments to the Sentry configuration.Improvements to
SelectChannel
command:src/commands/usecase/slash_commands/select_channel.rs
: Modified therun
method to handle cases where no channel is provided, defaulting to the current channel, and updated the command description and option to reflect that the channel is optional. [1] [2]Enhancements to error reporting:
src/error.rs
: Added a new functionreport_error_with_cause
to capture errors with their causes using Sentry, improving error diagnostics.Adjustments to Sentry configuration:
src/main.rs
: Enabledauto_session_tracking
anddebug
options in the Sentry initialization for better monitoring and debugging.Additional command registration:
src/handler/mod.rs
: Added a comment to indicate the registration of new commands in the event handler.