mirror of
https://github.com/SagerNet/sing-box-for-android.git
synced 2025-04-04 12:27:37 +03:00
Fixes for AppChangeReceiver
This commit is contained in:
parent
fa8fa60c3c
commit
567d46dcdc
2 changed files with 1 additions and 5 deletions
|
@ -138,10 +138,6 @@
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</receiver>
|
</receiver>
|
||||||
|
|
||||||
<receiver
|
|
||||||
android:name="io.nekohasekai.sfa.bg.AppChangeReceiver"
|
|
||||||
android:exported="true" />
|
|
||||||
|
|
||||||
<provider
|
<provider
|
||||||
android:name="androidx.core.content.FileProvider"
|
android:name="androidx.core.content.FileProvider"
|
||||||
android:authorities="${applicationId}.cache"
|
android:authorities="${applicationId}.cache"
|
||||||
|
|
|
@ -24,7 +24,7 @@ class AppChangeReceiver : BroadcastReceiver() {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
val perAppProxyUpdateOnChange = Settings.perAppProxyUpdateOnChange
|
val perAppProxyUpdateOnChange = Settings.perAppProxyUpdateOnChange
|
||||||
if (perAppProxyUpdateOnChange != Settings.PER_APP_PROXY_DISABLED) {
|
if (perAppProxyUpdateOnChange == Settings.PER_APP_PROXY_DISABLED) {
|
||||||
Log.d(TAG, "update on change disabled")
|
Log.d(TAG, "update on change disabled")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue