release: v4.11.0-beta.1

pull/417/head v4.11.0-beta.1
Varun Patil 2023-02-09 17:54:08 -08:00
parent a4a547f303
commit fc18e551fb
2 changed files with 6 additions and 1 deletions

View File

@ -34,7 +34,7 @@ Memories is a *batteries-included* photo management solution for Nextcloud with
1. Run `php ./occ memories:index` to generate metadata indices for existing photos.
1. Open the 📷 Memories app in Nextcloud and set the directory containing your photos.
]]></description>
<version>4.10.3</version>
<version>4.11.0-beta.1</version>
<licence>agpl</licence>
<author mail="radialapps@gmail.com" >Varun Patil</author>
<namespace>Memories</namespace>

View File

@ -299,6 +299,11 @@ class Index extends Command
return;
}
// skip IMDB name
if ('IMDB' === $folder->getName()) {
return;
}
$nodes = $folder->getDirectoryListing();
foreach ($nodes as $i => &$node) {