parent
a4a547f303
commit
fc18e551fb
|
@ -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>
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue