From 77195e7b3d753395feee3c869646a32fdaa25997 Mon Sep 17 00:00:00 2001 From: KH Lau Date: Thu, 8 Mar 2018 12:42:48 +0800 Subject: [PATCH] BrowserWindow.vala --- BrowserWindow.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BrowserWindow.vala b/BrowserWindow.vala index a6ca2e1..09c77c1 100644 --- a/BrowserWindow.vala +++ b/BrowserWindow.vala @@ -67,7 +67,7 @@ public class BrowserWindow : Object cookie_manager.set_accept_policy(WebKit.CookieAcceptPolicy.ALWAYS); string scheme = uri.get_scheme (); try { - File file = File.new_for_path(GLib.Environment.get_user_cache_dir() + '/cookie.txt' ); + 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