Commit 51009891 authored by Mygod's avatar Mygod

Fix domain name display in TileService

parent 201bb4fe
...@@ -94,7 +94,7 @@ object BaseService { ...@@ -94,7 +94,7 @@ object BaseService {
val binder = object : IShadowsocksService.Stub() { val binder = object : IShadowsocksService.Stub() {
override fun getState(): Int = this@Data.state override fun getState(): Int = this@Data.state
override fun getProfileName(): String = profile?.formattedName ?: "Idle" override fun getProfileName(): String = profile?.name ?: "Idle"
override fun registerCallback(cb: IShadowsocksServiceCallback) { override fun registerCallback(cb: IShadowsocksServiceCallback) {
callbacks.register(cb) callbacks.register(cb)
...@@ -318,6 +318,7 @@ object BaseService { ...@@ -318,6 +318,7 @@ object BaseService {
stopRunner(true, getString(R.string.profile_empty)) stopRunner(true, getString(R.string.profile_empty))
return Service.START_NOT_STICKY return Service.START_NOT_STICKY
} }
profile.name = profile.formattedName // save name for later queries
data.profile = profile data.profile = profile
TrafficMonitor.reset() TrafficMonitor.reset()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment