BrowserWindow.vala
authorKH Lau <khlau@roojs.com>
Thu, 8 Mar 2018 04:39:59 +0000 (12:39 +0800)
committerKH Lau <khlau@roojs.com>
Thu, 8 Mar 2018 04:39:59 +0000 (12:39 +0800)
BrowserWindow.vala

index c79a60c..a6ca2e1 100644 (file)
@@ -68,10 +68,11 @@ public class BrowserWindow : Object
                 string scheme = uri.get_scheme ();                
                 try {
                                             File file = File.new_for_path(GLib.Environment.get_user_cache_dir() + '/cookie.txt' );
+                                            print("setting cookie file%s\n",file.get_path());
                              FileOutputStream ostream = file.replace (null, false, FileCreateFlags.NONE);
                              DataOutputStream dostream = new DataOutputStream (ostream);
                              dostream.put_string (uri.get_host() + "\tTRUE\t/\t2147483647\t" + cookies[0] + "\t" + cookies[1] );                             
-                             cookie_manager.set_persistent_storage(file.get_path(), WebKit.CookiePersistentStorage.TEXT);
+                             cookie_manager.set_persistent_storage(file.get_path(), WebKit.CookiePersistentStorage.TEXT);                            
                     } catch (Error e) {
                              stdout.printf ("Error: %s\n", e.message);
                     }