Skip to content

Commit

Permalink
fix: (temporary fix)sos feature not working when app is background
Browse files Browse the repository at this point in the history
App is brought to foreground if app is terminated and sos is pressed
  • Loading branch information
ashuvssut committed Apr 2, 2023
1 parent 3550949 commit 18af0ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/services/sos_notification_methods.dart
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class SosNotificationMethods {
key: 'START',
label: 'Send SOS',
autoDismissible: false,
actionType: ActionType.KeepOnTop,
actionType: ActionType.Default,
enabled: true,
),
],
Expand All @@ -75,7 +75,7 @@ class SosNotificationMethods {
key: 'STOP',
label: 'Cancel SOS',
autoDismissible: false,
actionType: ActionType.KeepOnTop,
actionType: ActionType.Default,
enabled: true,
)
],
Expand Down

0 comments on commit 18af0ac

Please sign in to comment.