]> git.armaanb.net Git - chorizo.git/blobdiff - browser.c
Reactivate $LARIZA_USER_AGENT and use WebKit's default
[chorizo.git] / browser.c
index 9ee25e50f73f86c3a32a18e8b74ddf6584f3cd98..3ed7b7b0ff4792ea1bf89f7f32d56c5142653ad0 100644 (file)
--- a/browser.c
+++ b/browser.c
@@ -80,10 +80,7 @@ static gboolean language_is_set = FALSE;
 static gchar *search_text = NULL;
 static gboolean show_all_requests = FALSE;
 static gboolean tabbed_automagic = TRUE;
-static gchar *user_agent = "Mozilla/5.0 (X11; U; Unix; en-US) "
-                           "AppleWebKit/537.15 (KHTML, like Gecko) "
-                           "Chrome/24.0.1295.0 "
-                           "Safari/537.15 "__NAME_CAPITALIZED__"/git";
+static gchar *user_agent = NULL;
 
 
 void
@@ -199,10 +196,9 @@ client_new(const gchar *uri)
                language_is_set = TRUE;
        }
 
-       /*
-       g_object_set(G_OBJECT(webkit_web_view_get_settings(WEBKIT_WEB_VIEW(c->web_view))),
-                    "user-agent", user_agent, NULL);
-                                */
+       if (user_agent != NULL)
+               g_object_set(G_OBJECT(webkit_web_view_get_settings(WEBKIT_WEB_VIEW(c->web_view))),
+                            "user-agent", user_agent, NULL);
 
        c->scroll = gtk_scrolled_window_new(NULL, NULL);