Bug dû au garbage collector d'Android(tm).

This commit is contained in:
Bertrand Brun 2011-05-08 22:06:19 +02:00
parent 8e3cfb4334
commit c9b67033d6

View File

@ -257,12 +257,13 @@ ajaj.request = function(url, data, okFunction, smallErrorFunction, bigErrorFunct
try {
smallErrorFunction = smallErrorFunction || ajaj.smallError;
bigErrorFunction = bigErrorFunction || ajaj.bigError;
var user = UI().getPreference("user");
var passwd = UI().getPreference("passwd");
var user = "" + UI().getPreference("user");
var passwd = "" + UI().getPreference("passwd");
if (user != '' && passwd != '') {
// TODO : on transfère le user/passwd à chaque fois ici… c'est pas très bon.
data = $.extend({user:user, passwd:passwd}, data);
if (!data.user) data.user = user;
if (!data.passwd) data.passwd = passwd;
}
return $.getJSON(url, data, function(data) {
try {
if (data && data.isError) {