Fix nullpointer in DecryptActivity
This commit is contained in:
@@ -79,7 +79,7 @@ public class DecryptActivity extends DrawerActivity {
|
|||||||
final String clipboardText =
|
final String clipboardText =
|
||||||
ClipboardReflection.getClipboardText(DecryptActivity.this).toString();
|
ClipboardReflection.getClipboardText(DecryptActivity.this).toString();
|
||||||
|
|
||||||
new AsyncTask<Void,Void,Boolean>() {
|
AsyncTask<Void, Void, Boolean> tadaTask = new AsyncTask<Void, Void, Boolean>() {
|
||||||
@Override
|
@Override
|
||||||
protected Boolean doInBackground(Void... params) {
|
protected Boolean doInBackground(Void... params) {
|
||||||
|
|
||||||
@@ -104,7 +104,11 @@ public class DecryptActivity extends DrawerActivity {
|
|||||||
SubtleAttentionSeeker.tada(findViewById(R.id.clipboard_icon), 1.5f).start();
|
SubtleAttentionSeeker.tada(findViewById(R.id.clipboard_icon), 1.5f).start();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}.execute();
|
};
|
||||||
|
|
||||||
|
if (clipboardText != null) {
|
||||||
|
tadaTask.execute();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user