fs: minor variable name fix

Signed-off-by: Varun Patil <radialapps@gmail.com>
pull/602/head
Varun Patil 2023-04-21 01:10:28 -07:00
parent 91ab715da2
commit f833ddaac8
1 changed files with 4 additions and 4 deletions

View File

@ -116,20 +116,20 @@ class FsManager
// This is cheaper and more sensible than the root etag. // This is cheaper and more sensible than the root etag.
// The only time this breaks down is if the user places a .nomedia // The only time this breaks down is if the user places a .nomedia
// outside the timeline path; rely on expiration for that. // outside the timeline path; rely on expiration for that.
$cEtag = $uid; $etag = $uid;
// Multiple timeline path support // Multiple timeline path support
foreach ($paths as $path) { foreach ($paths as $path) {
$node = $userFolder->get($path); $node = $userFolder->get($path);
$root->addFolder($node); $root->addFolder($node);
$cEtag .= $node->getEtag(); $etag .= $node->getEtag();
} }
// Add shares or external stores inside the current folders // Add shares or external stores inside the current folders
$root->addMountPoints(); $root->addMountPoints();
// Exclude .nomedia folders // Exclude .nomedia folders
$root->excludePaths($this->getNoMediaFolders($userFolder, md5($cEtag))); $root->excludePaths($this->getNoMediaFolders($userFolder, md5($etag)));
} }
} catch (\OCP\Files\NotFoundException $e) { } catch (\OCP\Files\NotFoundException $e) {
$msg = $e->getMessage(); $msg = $e->getMessage();
@ -144,7 +144,7 @@ class FsManager
* Get list of folders with .nomedia file. * Get list of folders with .nomedia file.
* *
* @param Folder $root root folder * @param Folder $root root folder
* @param string $key etag for cache key * @param string $key cache key
*/ */
public function getNoMediaFolders(Folder $root, string $key): array public function getNoMediaFolders(Folder $root, string $key): array
{ {