pull/221/head
Varun Patil 2022-11-16 02:30:51 -08:00
parent c1ae720656
commit c3f874d4b4
3 changed files with 5 additions and 6 deletions

View File

@ -60,7 +60,7 @@ class ArchiveController extends ApiBase
// Create archive folder in the root of the user's configured timeline
$configPath = Exif::removeExtraSlash(Exif::getPhotosPath($this->config, $uid));
$configPaths = \explode(';', $configPath);
$configPaths = explode(';', $configPath);
$timelineFolders = [];
$timelinePaths = [];
@ -85,7 +85,7 @@ class ArchiveController extends ApiBase
}
// Hit a timeline folder
if (in_array($parent->getPath(), $timelinePaths)) {
if (\in_array($parent->getPath(), $timelinePaths, true)) {
break;
}

View File

@ -161,7 +161,9 @@ trait TimelineQueryDays
$query->addSelect('f.etag', 'f.path', 'f.name AS basename');
// SELECT rootid if not a single folder
if ($recursive) $query->addSelect('cte_f.rootid');
if ($recursive) {
$query->addSelect('cte_f.rootid');
}
// JOIN with mimetypes to get the mimetype
$query->join('f', 'mimetypes', 'mimetypes', $query->expr()->eq('f.mimetype', 'mimetypes.id'));

View File

@ -4,9 +4,6 @@ declare(strict_types=1);
namespace OCA\Memories;
use OCA\Memories\AppInfo\Application;
use OCP\IConfig;
class Util
{
public static $TAG_DAYID_START = -(1 << 30); // the world surely didn't exist