ソースを参照

Important fix: Adding a domain was not possible

andryyy 8 年 前
コミット
f4a0289e71
1 ファイル変更1 行追加1 行削除
  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');