Commit 0fe62e25 authored by Mygod's avatar Mygod

Prevent crash when removing current profile

parent 68992ea5
...@@ -195,8 +195,10 @@ final class ProfilesFragment extends ToolbarFragment with OnMenuItemClickListene ...@@ -195,8 +195,10 @@ final class ProfilesFragment extends ToolbarFragment with OnMenuItemClickListene
def refreshId(id: Int) { def refreshId(id: Int) {
val index = profiles.indexWhere(_.id == id) val index = profiles.indexWhere(_.id == id)
profiles(index) = app.profileManager.getProfile(id).get if (index >= 0) {
notifyItemChanged(index) profiles(index) = app.profileManager.getProfile(id).get
notifyItemChanged(index)
}
} }
def removeId(id: Int) { def removeId(id: Int) {
val index = profiles.indexWhere(_.id == id) val index = profiles.indexWhere(_.id == id)
......
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