Skip to content

Commit

Permalink
fix: crash when toggling quick tile on Android 14 fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
timschneeb committed Dec 13, 2024
1 parent 219b7d0 commit 5c635a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class QuickTileService : TileService(),

// If projection permission request needs to be shown, collapse status bar
if (isRootless() && app.mediaProjectionStartIntent == null && !hasProjectMediaAppOp() && !SdkCheck.isVanillaIceCream) {
if(SdkCheck.isVanillaIceCream)
if(SdkCheck.isUpsideDownCake)
startActivityAndCollapse(pending)
else
startActivityAndCollapse(intent)
Expand Down

0 comments on commit 5c635a5

Please sign in to comment.