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

Commit c971f582 authored by Fahim Salam Chowdhury's avatar Fahim Salam Chowdhury 👽
Browse files

Merge branch 'main' into 6287-Enable_murena_OIDC_support

parents d283ba97 0a78c741
Loading
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -131,7 +131,12 @@ class SendInviteFragment : Fragment() {
            trimedResult.lastIndexOf(":") + 1,
            trimedResult.length - 1
        )
        return errorCode.toInt()

        return try {
            errorCode.toInt()
        } catch (e: NumberFormatException) {
            -1
        }
    }

    private fun handleErrorCode(intCode: Int) {