Skip to content

Commit e2abb0d

Browse files
authored
Fix import of User & Breadcrumb (#3017)
Import with "" instead of <>
1 parent df19885 commit e2abb0d

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

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

9+
### Fixes
10+
11+
- Fix import of `User` & `Breadcrumb` (#3017)
12+
913
## 8.7.0
1014

1115
### Features

Sources/Sentry/include/HybridPublic/SentryBreadcrumb+Private.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
#import "SentryBreadcrumb.h"
12
#import "SentryDefines.h"
23
#import "SentrySerializable.h"
3-
#import <SentryBreadcrumb.h>
44

55
@interface
66
SentryBreadcrumb (Private)

Sources/Sentry/include/HybridPublic/SentryUser+Private.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#import "SentryDefines.h"
22
#import "SentrySerializable.h"
3-
#import <SentryUser.h>
3+
#import "SentryUser.h"
44

55
@interface
66
SentryUser (Private)

0 commit comments

Comments
 (0)