diff options
-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; |