diff --git a/www/plugins/es/js/controllers/profile-controllers.js b/www/plugins/es/js/controllers/profile-controllers.js
index 0e53ff8c06e46de1e27f07632c7e3fe4ec1dc317..71bdb63d046fb30252aaaa73f3a07f7aa3e8fb46 100644
--- a/www/plugins/es/js/controllers/profile-controllers.js
+++ b/www/plugins/es/js/controllers/profile-controllers.js
@@ -384,7 +384,7 @@ function ESViewEditProfileController($scope, $rootScope, $q, $timeout, $state, $
 
     var queryString = (query.street ? query.street + ', ' : '') +
       query.city +
-      (query.country ? ', ' + query.country : '')
+      (query.country ? ', ' + query.country : '');
     // Execute the given query
     return $q.all([
       $translate('PROFILE.MODAL_LOCATIONS.RESULT_DIVIDER', {address: queryString}),