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

Commit 7fb1a891 authored by Patrick Scott's avatar Patrick Scott Committed by Android Git Automerger
Browse files

am ae405d56: Merge "Fix a simple logic mistake." into froyo

Merge commit 'ae405d56' into froyo-plus-aosp

* commit 'ae405d56':
  Fix a simple logic mistake.
parents 38cb6197 ae405d56
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);
            }
        }