diff --git a/src/biz/bokhorst/xprivacy/ActivityShare.java b/src/biz/bokhorst/xprivacy/ActivityShare.java index 670b3580f..a5fcac837 100644 --- a/src/biz/bokhorst/xprivacy/ActivityShare.java +++ b/src/biz/bokhorst/xprivacy/ActivityShare.java @@ -1089,8 +1089,11 @@ public void endElement(String uri, String localName, String qName) { mAppAdapter.setMessage(uid, getString(R.string.msg_restart)); // Abort notification - if (mListAbortedUid.size() > 0) - mAppAdapter.setMessage(mListAbortedUid.get(0), getString(R.string.msg_aborted)); + if (mListAbortedUid.size() > 0) { + int uid = mListAbortedUid.get(0); + mAppAdapter.setState(uid, STATE_FAILURE); + mAppAdapter.setMessage(uid, getString(R.string.msg_aborted)); + } mAppAdapter.notifyDataSetChanged(); }