Skip to content
Snippets Groups Projects
Unverified Commit 240538d9 authored by Robin Appelman's avatar Robin Appelman
Browse files

reuse share node when creating a share


Signed-off-by: default avatarRobin Appelman <robin@icewind.nl>
parent 7d1e800c
No related branches found
No related tags found
No related merge requests found
......@@ -614,8 +614,11 @@ class Manager implements IManager {
throw new \Exception($error);
}
$oldShare = $share;
$provider = $this->factory->getProviderForType($share->getShareType());
$share = $provider->create($share);
//reuse the node we already have
$share->setNode($oldShare->getNode());
// Post share hook
$postHookData = [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment