1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-30 15:25:47 +01:00

Fix 'online' option's getter

This commit is contained in:
anekos
2009-01-05 13:59:58 +09:00
parent 1c6907eb2c
commit f8ffc1b482

View File

@@ -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;
}
});