Update to 2025-08-14 11:00

This commit is contained in:
Daniel Berteaud
2025-08-14 11:00:16 +02:00
parent 29674ac9ac
commit 702ba81114
2 changed files with 20 additions and 15 deletions

View File

@@ -1,13 +1,18 @@
--- /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js.orig 2021-05-27 00:16:17.230337938 +0200
+++ /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js 2021-05-27 00:20:00.203317519 +0200
@@ -468,8 +468,8 @@
},
success: function(response, opts) {
let res = response.result;
- if (res === null || res === undefined || !res || res
- .data.status.toLowerCase() !== 'active') {
+ if (false) { // res === null || res === undefined || !res || res
+ //.data.status.toLowerCase() !== 'active') {
Ext.Msg.show({
title: gettext('No valid subscription'),
icon: Ext.Msg.WARNING,
diff --git a/usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js.orig b/usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js
index ebf9c64..dab16a4 100644
--- a/usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js.orig
+++ b/usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js
@@ -608,12 +608,7 @@ Ext.define('Proxmox.Utils', {
},
success: function (response, opts) {
let res = response.result;
- if (
- res === null ||
- res === undefined ||
- !res ||
- res.data.status.toLowerCase() !== 'active'
- ) {
+ if (false) {
Ext.Msg.show({
title: gettext('No valid subscription'),
icon: Ext.Msg.WARNING,