Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
- If the email contains images from external sources, the Email to PDF converter will download the images, requiring external connections
- The current version does not consider Nextcloud's proxy configuration but should follow the system default
]]></description>
<version>0.1.2</version>
<version>0.1.3</version>
<licence>agpl</licence>
<author mail="[email protected]">Hamza Mahjoubi</author>
<author mail="[email protected]">Daniel Kesselberg</author>
Expand Down
2 changes: 1 addition & 1 deletion lib/Service/ConversionService.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function convert(string $filePath): string {
}

if (str_contains($stdout, 'Conversion finished') === false) {
throw new ConversionException('Conversion did not finish');
throw new ConversionException('The command output does not contain the phrase "Conversion finished". Output: ' . $stdout);
}

$status = proc_close($process);
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "files_emailviewer",
"description": "Email viewer plugin for Nextcloud",
"version": "0.1.2",
"version": "0.1.3",
"bugs": {
"url": "https://github.com/nextcloud/files_emailviewer/issues"
},
Expand Down
Loading