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

Commit 807ded35 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fix typo when ActivityNotFoundException occurs"

parents 14e84b84 22c8fc4b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -106,7 +106,7 @@ public class URLSpan extends ClickableSpan implements ParcelableSpan {
        try {
            context.startActivity(intent);
        } catch (ActivityNotFoundException e) {
            Log.w("URLSpan", "Actvity was not found for intent, " + intent.toString());
            Log.w("URLSpan", "Activity was not found for intent, " + intent.toString());
        }
    }
}