fixed symmetric decrypting, stream didn't support .reset(), I guess, so now creating fresh streams where needed, and changed exception string to "" + e, rather than getMessage(), as that still can be null... annoying.
This commit is contained in:
@@ -465,7 +465,7 @@ public class Apg {
|
||||
} catch (UserIdEditor.NoEmailException e) {
|
||||
throw new Apg.GeneralException(context.getString(R.string.error_userIdNeedsAnEmailAddress));
|
||||
} catch (UserIdEditor.InvalidEmailException e) {
|
||||
throw new Apg.GeneralException(e.getMessage());
|
||||
throw new Apg.GeneralException("" + e);
|
||||
}
|
||||
|
||||
if (userId.equals("")) {
|
||||
|
||||
Reference in New Issue
Block a user