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

index e2a0a0a..dfbfff4 100644 (file)
@@ -71,8 +71,11 @@ public class BrowserWindow : Object
                     ssl="TRUE";
                 }                
                 try {
-                                            File file = File.new_for_path(GLib.Environment.get_user_cache_dir() + "/cookie.txt" );
-                                            print("setting cookie file%s\n",file.get_path());
+                         FileIOStream iostream;
+                             File file = File.new_tmp ("cookie.txt", out iostream);
+                             printf ("cookie tmp file name: %s\n", file.get_path ());
+                                            //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);