Skip to content

Commit

Permalink
修复小于Android 13时的frpConfig is null
Browse files Browse the repository at this point in the history
  • Loading branch information
AceDroidX committed Feb 18, 2025
1 parent 0421dc8 commit d72954b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/io/github/acedroidx/frp/ShellService.kt
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class ShellService : LifecycleService() {
IntentExtraKey.FrpConfig, FrpConfig::class.java
)
} else {
@Suppress("DEPRECATION") intent?.extras?.getParcelable(IntentExtraKey.FrpConfig)
@Suppress("DEPRECATION") intent?.extras?.getParcelableArrayList(IntentExtraKey.FrpConfig)
}
if (frpConfig == null) {
Log.e("adx", "frpConfig is null")
Expand Down

0 comments on commit d72954b

Please sign in to comment.