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

index 6a41afc..c79a60c 100644 (file)
@@ -70,7 +70,8 @@ public class BrowserWindow : Object
                                             File file = File.new_for_path(GLib.Environment.get_user_cache_dir() + '/cookie.txt' );
                              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] );
+                             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);
                     } catch (Error e) {
                              stdout.printf ("Error: %s\n", e.message);
                     }