diff options
author | Josh <josh.t.richards@gmail.com> | 2025-07-31 21:05:41 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-31 21:05:41 -0400 |
commit | c95f42b1434171fbbb39ac3e01f5d90ba341f219 (patch) | |
tree | f671f627fcf00bb1cd45cad1bd6ed3f9b527c657 | |
parent | 0cc90a1cec5c7e16a4349f30a61ed39d99ddbd6c (diff) | |
download | nextcloud-server-refactor-occ-preview-generate.tar.gz nextcloud-server-refactor-occ-preview-generate.zip |
fix: ...refactor-occ-preview-generate
Signed-off-by: Josh <josh.t.richards@gmail.com>
-rw-r--r-- | core/Command/Preview/Generate.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/Preview/Generate.php b/core/Command/Preview/Generate.php index 86301834fbe..8e9aa8b09ea 100644 --- a/core/Command/Preview/Generate.php +++ b/core/Command/Preview/Generate.php @@ -78,7 +78,7 @@ class Generate extends Command { return self::FAILURE; } if (!$node instanceof File) { - $output->writeln("<error>specified file ($fileInput) is not a file (did you specify a folder by accident?)</error>"); + $output->writeln("<error>File ($fileInput) is not a file (did you specify a folder by accident?)</error>"); return self::INVALID; } // No point in continuing if there isn't a configured preview provider for the file |