Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Format code
  • Loading branch information
getsentry-bot committed Jul 7, 2025
commit 6af0c0f199e40afadd255b2b8c39815b6f4f8b7c
2 changes: 1 addition & 1 deletion src/Sentry/Integrations/ITidySdkIntegration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace Sentry.Integrations;
/// allows us to add some cleanup logic as an internal interface. We can move this to <see cref="ISdkIntegration"/>
/// in the next major release.
/// </summary>
internal interface ITidySdkIntegration: ISdkIntegration
internal interface ITidySdkIntegration : ISdkIntegration
{
/// <summary>
/// Performs any necessary cleanup for the integration
Expand Down
2 changes: 1 addition & 1 deletion src/Sentry/Internal/Hub.cs
Original file line number Diff line number Diff line change
Expand Up @@ -782,7 +782,7 @@ public void Dispose()
{
try
{
integration.Cleanup();
integration.Cleanup();
}
catch (Exception e)
{
Expand Down