diff --git a/MP-TAB3/MP-TAB3.csproj b/MP-TAB3/MP-TAB3.csproj
index 9e427c82..455f5a7c 100644
--- a/MP-TAB3/MP-TAB3.csproj
+++ b/MP-TAB3/MP-TAB3.csproj
@@ -3,7 +3,7 @@
net6.0
enable
- 6.16.2505.1517
+ 6.16.2506.1215
enable
MP_TAB3
diff --git a/MP-TAB3/Resources/ChangeLog.html b/MP-TAB3/Resources/ChangeLog.html
index b13f8c61..af823f75 100644
--- a/MP-TAB3/Resources/ChangeLog.html
+++ b/MP-TAB3/Resources/ChangeLog.html
@@ -1,6 +1,6 @@
Modulo MAPOSPEC
- Versione: 6.16.2505.1517
+ Versione: 6.16.2506.1215
Note di rilascio:
-
diff --git a/MP-TAB3/Resources/VersNum.txt b/MP-TAB3/Resources/VersNum.txt
index 2118c9ae..35cc2c56 100644
--- a/MP-TAB3/Resources/VersNum.txt
+++ b/MP-TAB3/Resources/VersNum.txt
@@ -1 +1 @@
-6.16.2505.1517
+6.16.2506.1215
diff --git a/MP-TAB3/Resources/manifest.xml b/MP-TAB3/Resources/manifest.xml
index c4ddec88..8c1852b2 100644
--- a/MP-TAB3/Resources/manifest.xml
+++ b/MP-TAB3/Resources/manifest.xml
@@ -1,6 +1,6 @@
-
- 6.16.2505.1517
+ 6.16.2506.1215
https://nexus.steamware.net/repository/SWS/MP-TAB3/stable/LAST/MP-TAB3.zip
https://nexus.steamware.net/repository/SWS/MP-TAB3/stable/LAST/ChangeLog.html
false
diff --git a/MP.Core/DTO/ObjItemDTO.cs b/MP.Core/DTO/ObjItemDTO.cs
index 58642c9c..3f9262b0 100644
--- a/MP.Core/DTO/ObjItemDTO.cs
+++ b/MP.Core/DTO/ObjItemDTO.cs
@@ -56,12 +56,12 @@ namespace MP.Core.DTO
///
/// Valore MASSIMO (SE impostato)
///
- public int valMax { get; set; }
+ public double valMax { get; set; }
///
/// Valore minimo (SE impostato)
///
- public int valMin { get; set; }
+ public double valMin { get; set; }
///
/// Valore parametro (come stringa, decimali con ",", default VUOTO), sul CNC/PLC
diff --git a/MP.Data/Services/TabDataService.cs b/MP.Data/Services/TabDataService.cs
index 7e2844d1..c5681c67 100644
--- a/MP.Data/Services/TabDataService.cs
+++ b/MP.Data/Services/TabDataService.cs
@@ -1490,7 +1490,7 @@ namespace MP.Data.Services
// cerco in redis...
string currKey = redHashMpIO($"CurrentParameters:{idxMacchina}");
RedisValue rawData = redisDb.StringGet(currKey);
- if (rawData.HasValue)
+ if (rawData.HasValue && rawData.Length() > 2)
{
var rawVal = JsonConvert.DeserializeObject
>($"{rawData}");
// ordino!