Skip to content

Commit fbe7560

Browse files
Merge pull request #144 from nikoyak/widget-fix
Fix issue #142
2 parents 6e9b392 + 15d7e5f commit fbe7560

File tree

1 file changed

+1
-1
lines changed
  • app/src/main/java/com/smartpack/kernelmanager/services/profile

1 file changed

+1
-1
lines changed

app/src/main/java/com/smartpack/kernelmanager/services/profile/Widget.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ private PendingIntent getPendingIntent(Context context, String action) {
7474
Intent intent = new Intent(context, getClass());
7575
intent.setAction(action);
7676
return PendingIntent.getBroadcast(context, 0, intent, Build.VERSION.SDK_INT >=
77-
android.os.Build.VERSION_CODES.M ? PendingIntent.FLAG_IMMUTABLE : 0);
77+
android.os.Build.VERSION_CODES.M ? PendingIntent.FLAG_MUTABLE : 0);
7878
}
7979

8080
@Override

0 commit comments

Comments
 (0)