Explorar o código

Important fix: Adding a domain was not possible

andryyy %!s(int64=8) %!d(string=hai) anos
pai
achega
f4a0289e71
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      data/web/js/add.js

+ 1 - 1
data/web/js/add.js

@@ -3,7 +3,7 @@ $(document).ready(function() {
 	// Get max. possible quota for a domain when domain field changes
 	$('#addSelectDomain').on('change', function() {
 		$.get("/api/v1/get/domain/" + this.value, function(data){
-      var result = jQuery.parseJSON( data );
+      var result = $.parseJSON(JSON.stringify(data));
       max_new_mailbox_quota = ( result.max_new_mailbox_quota / 1048576);
 			if (max_new_mailbox_quota != '0') {
 				$("#quotaBadge").html('max. ' +  max_new_mailbox_quota + ' MiB');