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

Commit ae405d56 authored by Patrick Scott's avatar Patrick Scott Committed by Android (Google) Code Review
Browse files

Merge "Fix a simple logic mistake." into froyo

parents 2a5d9f9b 0cf6046b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1164,7 +1164,7 @@ class CallbackProxy extends Handler {
        // for null.
        WebHistoryItem i = mBackForwardList.getCurrentItem();
        if (i != null) {
            if (precomposed || i.getTouchIconUrl() != null) {
            if (precomposed || i.getTouchIconUrl() == null) {
                i.setTouchIconUrl(url);
            }
        }