# HG changeset patch # User Elliott Sales de Andrade # Date 1325658651 0 # Node ID 692d5408983dd0b682c8ba4c603077060f65bd8e # Parent 1f372ac4a1003d083d7cb51ec415499ac359eab7 We don't want WebKit to process a Refresh, or Back/Forward request either. diff -r 1f372ac4a100 -r 692d5408983d pidgin/gtkwebview.c --- a/pidgin/gtkwebview.c Wed Jan 04 03:37:59 2012 +0000 +++ b/pidgin/gtkwebview.c Wed Jan 04 06:30:51 2012 +0000 @@ -214,8 +214,10 @@ * why, so right now just using purple_notify_uri directly */ purple_notify_uri(NULL, uri); webkit_web_policy_decision_ignore(policy_decision); - } else + } else if (reason == WEBKIT_WEB_NAVIGATION_REASON_OTHER) webkit_web_policy_decision_use(policy_decision); + else + webkit_web_policy_decision_ignore(policy_decision); return TRUE; }