Skip to content

Commit

Permalink
Merge pull request #26623 from owncloud/fix-transferownership-findtra…
Browse files Browse the repository at this point in the history
…nsferfolder

Fix finding transferred folder in integration tests
  • Loading branch information
DeepDiver1975 authored Nov 21, 2016
2 parents c60dd51 + 150f8c2 commit 65f642f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ private function findLastTransferFolderForUser($sourceUser, $targetUser) {
if (isset($parts[2]) && $parts[2] === $sourceUser) {
// store timestamp as key
$foundPaths[] = [
'date' => strtotime(dirname($parts[4])),
'date' => strtotime(trim($parts[4], '/')),
'path' => $path,
];
}
Expand Down

0 comments on commit 65f642f

Please sign in to comment.