Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dcd85f49 authored by David Luhmer's avatar David Luhmer
Browse files

fix broken exception (npe)

parent 4fd36fca
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -29,8 +29,8 @@ public class CurrentAccountNotFoundException extends SSOException {
    @Override
    public void loadExceptionMessage(Context context) {
        this.em = new ExceptionMessage(
            em.title   = context.getString(R.string.current_account_not_found_exception_title),
            em.message = context.getString(R.string.current_account_not_found_exception_message)
            context.getString(R.string.current_account_not_found_exception_title),
            context.getString(R.string.current_account_not_found_exception_message)
        );
    }
}