diff --git a/assets/webconfig/content/about.html b/assets/webconfig/content/about.html index 4715ac5b..27a962b4 100644 --- a/assets/webconfig/content/about.html +++ b/assets/webconfig/content/about.html @@ -61,13 +61,13 @@ $.ajax({ url:'3RD_PARTY_LICENSES', dataType: "text", - success: function() - { - $("#3rdpartylicenses").html('' + $.i18n("about_3rd_party_licenses_error") + ''); - }, - error: function(data) + success: function(data) { $("#3rdpartylicenses").html('' + data + ''); + }, + error: function() + { + $("#3rdpartylicenses").html('' + $.i18n("about_3rd_party_licenses_error") + ''); } });