Skip to content

Commit e4a7f8c

Browse files
committed
🐛 uuid
Signed-off-by: bnomei <[email protected]>
1 parent 830d834 commit e4a7f8c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "bnomei/kirby3-janitor",
33
"type": "kirby-plugin",
4-
"version": "3.4.0",
4+
"version": "3.4.1",
55
"license": "MIT",
66
"description": "Kirby 3 Plugin for running commands like cleaning the cache from within the Panel, PHP code or a cronjob",
77
"authors": [

index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
} elseif ($this->model() instanceof \Kirby\Cms\Site) {
5050
$command .= ' --site'; // boolean argument
5151
}
52-
$command .= ' --model '. $this->model()->uuid()->toString() ??
52+
$command .= ' --model '. $this->model()->uuid()?->toString() ??
5353
($this->model() instanceof \Kirby\Cms\Site ? 'site://' : $this->model()->id());
5454

5555
$command .= ' --quiet'; // no STDOUT on frontend PHP

vendor/composer/installed.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php return array(
22
'root' => array(
33
'name' => 'bnomei/kirby3-janitor',
4-
'pretty_version' => '3.4.0',
5-
'version' => '3.4.0.0',
4+
'pretty_version' => '3.4.1',
5+
'version' => '3.4.1.0',
66
'reference' => NULL,
77
'type' => 'kirby-plugin',
88
'install_path' => __DIR__ . '/../../',
@@ -11,8 +11,8 @@
1111
),
1212
'versions' => array(
1313
'bnomei/kirby3-janitor' => array(
14-
'pretty_version' => '3.4.0',
15-
'version' => '3.4.0.0',
14+
'pretty_version' => '3.4.1',
15+
'version' => '3.4.1.0',
1616
'reference' => NULL,
1717
'type' => 'kirby-plugin',
1818
'install_path' => __DIR__ . '/../../',

0 commit comments

Comments
 (0)