diff --git a/www/js/config.js b/www/js/config.js index 7b80d11dc2cbcfae6612e34b19e6e95f6ac59a95..25e5983865d57875d65b54cbfc5ece498c91510c 100644 --- a/www/js/config.js +++ b/www/js/config.js @@ -93,8 +93,8 @@ angular.module("cesium.config", []) "defaultCountry": "France" } }, - "version": "1.4.12", - "build": "2019-12-23T16:20:00.370Z", + "version": "1.4.13", + "build": "2019-12-24T13:13:44.631Z", "newIssueUrl": "https://git.duniter.org/clients/cesium-grp/cesium/issues/new" }) diff --git a/www/js/controllers/join-controllers.js b/www/js/controllers/join-controllers.js index f05651cad4eec6e8223a02aa340a2631b8021502..0cfa56f3c7e8d218b8048512d315e6baacf34269 100644 --- a/www/js/controllers/join-controllers.js +++ b/www/js/controllers/join-controllers.js @@ -395,7 +395,7 @@ function JoinModalController($scope, $state, $interval, $q, $timeout, Device, UI var needSelf = angular.isUndefined(parameters.uid) || angular.isUndefined(parameters.blockUid) || (parameters.uid.toUpperCase() !== $scope.formData.pseudo.toUpperCase()); if (!needSelf) { - wallet.setSelf(parameters.uid, parameters.blockUid) + wallet.setSelf(parameters.uid, parameters.blockUid); } // Self promise (if need) diff --git a/www/js/services/cache-services.js b/www/js/services/cache-services.js index 3ea97aca857be305ba233ef0c9679b73899cb73e..08921d8bde5ee4a73c84d8de86867979821bb5cd 100644 --- a/www/js/services/cache-services.js +++ b/www/js/services/cache-services.js @@ -3,7 +3,6 @@ angular.module('cesium.cache.services', ['angular-cache']) .factory('csCache', function($http, $window, csSettings, CacheFactory) { 'ngInject'; - console.log('') var constants = { VERY_LONG: 54000000, /*15 days*/ diff --git a/www/js/services/wot-services.js b/www/js/services/wot-services.js index f3bc1e3e008af25e7399a661d5fcbbcd5cfe1db7..1ddfd428bde89a793e2f95bd4e38992a7302649e 100644 --- a/www/js/services/wot-services.js +++ b/www/js/services/wot-services.js @@ -185,7 +185,7 @@ angular.module('cesium.wot.services', ['ngApi', 'cesium.bma.services', 'cesium.c console.debug("[wot] Requirements " + cacheKey + " found in cache"); // Update data with cache angular.merge(inputData, data); - return $q.when(data) + return $q.when(data); } data = {pubkey: inputData.pubkey, uid: inputData.uid}; diff --git a/www/plugins/es/js/services/http-services.js b/www/plugins/es/js/services/http-services.js index 7e619a0b40beb4a4fc88d217684c88c6b2753d30..bc1b070799232d93e40f113f2a56e540b715fcbc 100644 --- a/www/plugins/es/js/services/http-services.js +++ b/www/plugins/es/js/services/http-services.js @@ -198,7 +198,7 @@ angular.module('cesium.es.http.services', ['ngResource', 'ngApi', 'cesium.servic request = csHttp.post(that.host, that.port, path, that.useSsl); that.cache.postByPath[path] = request; } - return request(obj, params) + return request(obj, params); }; return postRequest; };