You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Load method in FilesQuery has a max files load
- Bugfix: adding a dir to the DirCollection caused it to have wrong
indexes because a index of -1 could occur
Copy file name to clipboardExpand all lines: src/FQ/collections/DirCollection.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ public function addDir(Dir $dir, $index = null) {
23
23
if (is_int($index) && $totalDirs < $index) {
24
24
thrownewDirCollectionException(sprintf('Trying to add dir, but the provided index of "%s" is to high. There are currently %s dirs.', $index, $totalDirs));
0 commit comments