From f8ffc1b48276dbbbf9ea866bac4374b96880e385 Mon Sep 17 00:00:00 2001 From: anekos Date: Mon, 5 Jan 2009 13:59:58 +0900 Subject: [PATCH] Fix 'online' option's getter --- vimperator/content/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vimperator/content/config.js b/vimperator/content/config.js index c1759128..6a3a3ab1 100644 --- a/vimperator/content/config.js +++ b/vimperator/content/config.js @@ -438,7 +438,7 @@ const config = { //{{{ getter: function () { const ioService = Cc["@mozilla.org/network/io-service;1"].getService(Ci.nsIIOService2); - return ioService.offline; + return !ioService.offline; } });