From 68bd26220826fc8c62f3a135a65d1138d9f697d6 Mon Sep 17 00:00:00 2001 From: KH Lau Date: Thu, 8 Mar 2018 12:51:44 +0800 Subject: [PATCH] BrowserWindow.vala --- BrowserWindow.vala | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/BrowserWindow.vala b/BrowserWindow.vala index e2a0a0a..dfbfff4 100644 --- a/BrowserWindow.vala +++ b/BrowserWindow.vala @@ -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); -- 2.39.2