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

Commit f5b6603c authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 6398428 from 0888a3ac to rvc-release

Change-Id: I5d210f1f762bc035e71aa3e82744e06af51764f8
parents d61ae392 0888a3ac
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -619,10 +619,10 @@ public abstract class BaseActivity

        // Causes talkback to announce the activity's new title
        String appName = getString(R.string.files_label);
        if (getTitle().toString().isEmpty()) {
        if (getTitle() == null || getTitle().toString().isEmpty()) {
            // First launch, TalkBack announces app name.
            setTitle(String.format("%s. %s", appName, mState.stack.getTitle()));
        } else {
        } else if (mState.stack.getTitle() != null) {
            setTitle(mState.stack.getTitle());
        }