Fix previews for federated shares

The owner of a federated file is the federated user. For which we
obviously can't setup a view.

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
pull/2305/head
Roeland Jago Douma 10 years ago
parent f4cf125a4a
commit dab87ef6fd
No known key found for this signature in database
GPG Key ID: F941078878347C0C
  1. 3
      lib/private/Preview/GeneratorHelper.php

@ -60,7 +60,8 @@ class GeneratorHelper {
* This is required to create the old view and path
*/
private function getViewAndPath(File $file) {
$owner = $file->getOwner()->getUID();
$absPath = ltrim($file->getPath(), '/');
$owner = explode('/', $absPath)[0];
$userFolder = $this->rootFolder->getUserFolder($owner)->getParent();

Loading…
Cancel
Save