Minor fixes + bump up version

pull/62/head v1.1.5
Varun Patil 2022-09-14 18:20:06 -07:00
parent a45b8af697
commit 2c46fc8689
3 changed files with 2 additions and 3 deletions

View File

@ -4,7 +4,6 @@ on:
push: push:
branches: branches:
- master - master
- citest
env: env:
APP_NAME: memories APP_NAME: memories

View File

@ -32,7 +32,7 @@ The exact steps depend on your Nextcloud platform. If you use Docker for your Ne
- **MacOS**: `brew install exiftool` - **MacOS**: `brew install exiftool`
- **FreeBSD**: `sudo pkg install p5-Image-ExifTool` - **FreeBSD**: `sudo pkg install p5-Image-ExifTool`
]]></description> ]]></description>
<version>1.1.4</version> <version>1.1.5</version>
<licence>agpl</licence> <licence>agpl</licence>
<author mail="radialapps@gmail.com" >Varun Patil</author> <author mail="radialapps@gmail.com" >Varun Patil</author>
<website>https://github.com/pulsejet/memories</website> <website>https://github.com/pulsejet/memories</website>

View File

@ -168,7 +168,7 @@ class Exif {
$readyToken = "\n{ready}\n"; $readyToken = "\n{ready}\n";
try { try {
$buf = self::readOrTimeout(self::$staticPipes[1], 2000, $readyToken); $buf = self::readOrTimeout(self::$staticPipes[1], 5000, $readyToken);
$tokPos = strrpos($buf, $readyToken); $tokPos = strrpos($buf, $readyToken);
$buf = substr($buf, 0, $tokPos); $buf = substr($buf, 0, $tokPos);
return self::processStdout($buf); return self::processStdout($buf);