Skip to content

Commit

Permalink
fix missing hive type
Browse files Browse the repository at this point in the history
  • Loading branch information
Codel1417 committed Jun 5, 2024
1 parent 6895674 commit 1d332cf
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,9 @@ Future<void> initHive() async {
if (!SentryHive.isAdapterRegistered(TriggerActionAdapter().typeId)) {
SentryHive.registerAdapter(TriggerActionAdapter());
}
if (!SentryHive.isAdapterRegistered(TriggerAdapter().typeId)) {
SentryHive.registerAdapter(TriggerAdapter());
}
if (!SentryHive.isAdapterRegistered(ActionCategoryAdapter().typeId)) {
SentryHive.registerAdapter(ActionCategoryAdapter());
}
Expand Down

0 comments on commit 1d332cf

Please sign in to comment.