Merge "Fix typo when ActivityNotFoundException occurs"

This commit is contained in:
Treehugger Robot
2023-06-13 16:25:02 +00:00
committed by Gerrit Code Review

View File

@@ -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());
}
}
}