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
def refreshId(id: Int) {
val index = profiles.indexWhere(_.id == id)
profiles(index) = app.profileManager.getProfile(id).get
notifyItemChanged(index)
if (index >= 0) {
profiles(index) = app.profileManager.getProfile(id).get
notifyItemChanged(index)
}
}
def removeId(id: Int) {
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