diff --git a/appinfo/info.xml b/appinfo/info.xml
index 0ab37f5a..bfa9e818 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -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.
]]>
- 4.10.3
+ 4.11.0-beta.1
agpl
Varun Patil
Memories
diff --git a/lib/Command/Index.php b/lib/Command/Index.php
index b2722d31..61a5831c 100644
--- a/lib/Command/Index.php
+++ b/lib/Command/Index.php
@@ -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) {