* Fri Jun 13 2025 Brian Read <brianr@koozali.org> 11.0.0-17.sme

- Fix return from function in Nutups-custom [SME: 13042]
- Check Seconds left for zero before dividing by 60
This commit is contained in:
2025-06-13 11:46:19 +01:00
parent f58cc8a22f
commit 32cfcf5ed3
3 changed files with 19 additions and 5 deletions

View File

@@ -117,7 +117,7 @@ our $cdb;
my $selected = shift; #Parameter is name of selected row.
my $is_new_record = shift; #Indicates new record required (defaults)
my %ret = {};
return $ret;
return %ret;
}
sub get_selected_CONFIG {
@@ -125,7 +125,7 @@ our $cdb;
my $selected = shift; #Parameter is name of selected row.
my $is_new_record = shift; #Indicates new record required (defaults)
my %ret = {};
return $ret;
return %ret;
}
@@ -279,4 +279,4 @@ sub get_status_from_device {
}
1;
1;