Browse Source

Use the path_hash instead of the path to query the filecache

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
pull/10260/head
Morris Jobke 7 years ago
parent
commit
19c49c8473
No known key found for this signature in database GPG Key ID: FE03C3A163FEDE68
  1. 2
      lib/private/Files/Config/UserMountCache.php

2
lib/private/Files/Config/UserMountCache.php

@ -375,7 +375,7 @@ class UserMountCache implements IUserMountCache {
->innerJoin('m', 'filecache', 'f',
$builder->expr()->andX(
$builder->expr()->eq('m.storage_id', 'f.storage'),
$builder->expr()->eq('f.path', $builder->createNamedParameter('files'))
$builder->expr()->eq('f.path_hash', $builder->createNamedParameter(md5('files')))
))
->where($builder->expr()->eq('m.mount_point', $mountPoint))
->andWhere($builder->expr()->in('m.user_id', $builder->createNamedParameter($userIds, IQueryBuilder::PARAM_STR_ARRAY)));

Loading…
Cancel
Save