From: KH Lau Date: Thu, 8 Mar 2018 04:51:44 +0000 (+0800) Subject: BrowserWindow.vala X-Git-Url: http://git.roojs.org/?p=app.webkitpdf;a=commitdiff_plain;h=68bd26220826fc8c62f3a135a65d1138d9f697d6 BrowserWindow.vala --- 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);