Skip to content

Commit

Permalink
Fix import of User & Breadcrumb (#3017)
Browse files Browse the repository at this point in the history
Import with "" instead of <>
  • Loading branch information
denrase authored May 15, 2023
1 parent df19885 commit e2abb0d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

- Add `sent_at` to envelope header (#2859)

### Fixes

- Fix import of `User` & `Breadcrumb` (#3017)

## 8.7.0

### Features
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#import "SentryBreadcrumb.h"
#import "SentryDefines.h"
#import "SentrySerializable.h"
#import <SentryBreadcrumb.h>

@interface
SentryBreadcrumb (Private)
Expand Down
2 changes: 1 addition & 1 deletion Sources/Sentry/include/HybridPublic/SentryUser+Private.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#import "SentryDefines.h"
#import "SentrySerializable.h"
#import <SentryUser.h>
#import "SentryUser.h"

@interface
SentryUser (Private)
Expand Down

0 comments on commit e2abb0d

Please sign in to comment.