bug mit timestamp behomben

This commit is contained in:
2025-02-28 15:12:49 +01:00
parent 9c1b00fe67
commit ae7241be07
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -48,10 +48,10 @@ class HauptManager extends IPSModule
foreach ($Verbraucher_Liste as $key => $user) {
$decodedUser = json_decode(GetValue($user["User_Up"]));
if (isset($decodedUser["Timestamp"]) && (($currentTime - $decodedUser)["Timestamp"]) < 30) {
if (isset($decodedUser["Timestamp"]) && (($currentTime - $decodedUser["Timestamp"])) < 30) {
$Verbraucher_Liste_Korr[] = [
"User" => json_decode(GetValue($user["User_Up"])),
"User" => $decodedUser,
"Sendback" => $user["User_Down"]
];