diff options
author | Claudio Saavedra <csaavedra@igalia.com> | 2012-08-29 23:57:54 +0800 |
---|---|---|
committer | Claudio Saavedra <csaavedra@igalia.com> | 2012-09-01 02:34:02 +0800 |
commit | 7263dad918cab2464f332cabfb7047bb5efc34a1 (patch) | |
tree | 501af7b5f85ec6e4801e19a49455420ff0e8f1b0 | |
parent | 3a558c289b0dd42b18f12aeb1ef5d5de0e82b47e (diff) | |
download | gsoc2013-epiphany-7263dad918cab2464f332cabfb7047bb5efc34a1.tar.gz gsoc2013-epiphany-7263dad918cab2464f332cabfb7047bb5efc34a1.tar.zst gsoc2013-epiphany-7263dad918cab2464f332cabfb7047bb5efc34a1.zip |
ephy-session: don't check loading status for the overview page
Since this is a special page, there's no need for this.
-rw-r--r-- | src/ephy-session.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ephy-session.c b/src/ephy-session.c index e45099c59..cd4e667bb 100644 --- a/src/ephy-session.c +++ b/src/ephy-session.c @@ -974,7 +974,8 @@ parse_embed (xmlNodePtr child, open an about:blank tab. See http://bugzilla.gnome.org/show_bug.cgi?id=591294 Otherwise, if the web was fully loaded, it is reloaded again. */ if (!was_loading || - strcmp ((const char *) url, "about:blank") == 0) + strcmp ((const char *) url, "about:blank") == 0 || + strcmp ((const char *) url, "about:overview") == 0) { recover_url = (char *) url; |