]> gitweb.fluxo.info Git - rhatto/dotfiles/luakit.git/commitdiff
Fix soup.accept_policy and disable sessman
authorSilvio Rhatto <rhatto@riseup.net>
Mon, 18 Sep 2017 22:01:15 +0000 (19:01 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Mon, 18 Sep 2017 22:01:15 +0000 (19:01 -0300)
config.dot/luakit.link/globals.lua
config.dot/luakit.link/rc.lua

index 6364862e6f3ba56484d69d7ed45cafe197baa4b9..eb51a3eca611c849edec992f8992d247b41e9343 100644 (file)
@@ -47,8 +47,8 @@ end
 soup.ssl_strict = true
 
 -- Set cookie acceptance policy
-cookie_policy = { always = 0, never = 1, no_third_party = 2 }
-soup.accept_policy = cookie_policy.always
+-- Valid values are always, never or no_third_party
+soup.accept_policy = "always"
 
 -- List of search engines. Each item must contain a single %s which is
 -- replaced by URI encoded search terms. All other occurances of the percent
index 16f9031b68c294610fc7e14568dce3359ee2926e..26a7c2ca7e9adb3ff25a19b086ca8c7b1f49859a 100644 (file)
@@ -162,7 +162,7 @@ local tab_favicons = require "tab_favicons"
 local view_source = require "view_source"
 
 -- Load sessman
-local sessman = require "sessman"
+--local sessman = require "sessman"
 
 -----------------------------
 -- End user script loading --