Skip to content

Commit

Permalink
Fix ContextCompat.registerReceiver flag
Browse files Browse the repository at this point in the history
  • Loading branch information
IanVS committed Oct 29, 2024
1 parent a922eef commit 60dd6da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class MainActivity: FlutterActivity() {

apiClient = APIClient(context)

ContextCompat.registerReceiver(context, refreshReceiver, IntentFilter(ACTION_REFRESH_SITES), RECEIVER_NOT_EXPORTED)
ContextCompat.registerReceiver(context, refreshReceiver, IntentFilter(ACTION_REFRESH_SITES), ContextCompat.RECEIVER_NOT_EXPORTED)

enqueueDNUpdater()
}
Expand Down

0 comments on commit 60dd6da

Please sign in to comment.