- Fixed a bug where crons wouldn't load into spectre's queue at startup.
- Fixed a bug in the Collaboration System where posts from the Safari browser would be submitted without changes.
This commit is contained in:
parent
ea0424e455
commit
18b5da96d3
3 changed files with 5 additions and 2 deletions
|
|
@ -127,7 +127,7 @@ An integer (1,2,3) that determines what priority the workflow should be executed
|
|||
sub addJob {
|
||||
my ($self, $params) = @_[OBJECT, ARG0];
|
||||
my $id = $params->{config}."-".$params->{taskId};
|
||||
if ($params->{config} eq "" || $params->{taskId}) {
|
||||
if ($params->{config} eq "" || $params->{taskId} eq "") {
|
||||
$self->error("Can't add a schedule with missing data: $id");
|
||||
}
|
||||
else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue