Compare commits

..

No commits in common. "826c120ca581ba5c424a54762f642d4dff4225bd" and "f285eacd551725453018611f698ca40282549567" have entirely different histories.

2 changed files with 1 additions and 11 deletions

View file

@ -3,7 +3,6 @@ package im.angry.openeuicc.ui
import android.annotation.SuppressLint
import android.os.Bundle
import android.view.LayoutInflater
import android.view.MenuItem
import android.view.View
import android.view.ViewGroup
import android.widget.TextView
@ -56,15 +55,6 @@ class EuiccInfoActivity : BaseEuiccAccessActivity() {
setupRootViewInsets(infoList)
}
override fun onOptionsItemSelected(item: MenuItem): Boolean = when (item.itemId) {
android.R.id.home -> {
finish()
true
}
else -> super.onOptionsItemSelected(item)
}
override fun onInit() {
refresh()
}

View file

@ -207,7 +207,7 @@ class OpenEuiccService : EuiccService(), OpenEuiccContextMarker {
return@withEuiccChannelManager GetEuiccProfileInfoListResult(
RESULT_OK,
profiles.toTypedArray(),
channel.port.card.isRemovable
channel.removable
)
}