mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
restore changes
This commit is contained in:
parent
1d63b2301f
commit
e314461da7
1 changed files with 7 additions and 2 deletions
|
@ -224,7 +224,12 @@
|
|||
|
||||
var url = "http://mb3admin.com/admin/service/user/getPayPalEmail?id=" + pkg.owner;
|
||||
|
||||
$.getJSON(url).done(function (dev) {
|
||||
fetch(url, { mode: 'no-cors' }).then(function (response) {
|
||||
|
||||
return response.json();
|
||||
|
||||
}).then(function (dev) {
|
||||
|
||||
if (dev.payPalEmail) {
|
||||
$('#payPalEmail', page).val(dev.payPalEmail);
|
||||
|
||||
|
@ -276,4 +281,4 @@
|
|||
}
|
||||
};
|
||||
|
||||
})();
|
||||
})();
|
Loading…
Add table
Add a link
Reference in a new issue