Error message has no info (yet), revert to e.toString()

This commit is contained in:
str4d
2014-07-08 13:02:32 +00:00
parent 3ed51d8b92
commit f1ac04b641

View File

@@ -47,6 +47,6 @@ public class NetworkInfoFragment extends Fragment {
Exception e = I2PBote.getInstance().getConnectError();
if (e != null)
((TextView) view.findViewById(R.id.error)).setText(e.getLocalizedMessage());
((TextView) view.findViewById(R.id.error)).setText(e.toString());
}
}