tbali

關於我

開發者資訊
名稱 tbali
加入日期 Nov. 26, 2013
參與開發的附加元件數量 0 個附加元件
此開發者的附加元件平均分數 未經評分

我所發表的評論

KDE Wallet password integration

評分: 5 / 5 顆星

I found the problem with firefox 24+. The api changed.
In the file ~/.mozilla/firefox/XXXXXXX.default/extensions/kwallet@guillermo.molina/components/KDEWalletStorage.js add the following lines:

get isLoggedIn() {
return true;
}

So it will look like this:

------------------
countLogins: function countLogins(hostname, submitURL, realm) {
this.log( "countLogins() Start" );
var count = this._lib.countLogins(hostname, submitURL, realm);
this.log( "countLogins() counted = " + count );
return count;
},
get isLoggedIn() {
return true;
}
};

const NSGetFactory = XPCOMUtils.generateNSGetFactory([KDEWalletStorage]);
------------------

Dear Guillermo Molina, please support is in the future too! Thanks for your work!

此意見為舊版本 (2.1.1-signed.1-signed) 的附加元件。