-
-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tidy up to broad rename from location to place #1657
Conversation
Signed-off-by: Louis Chemineau <louis@chmn.me>
f7777f8
to
afb22c9
Compare
@@ -167,8 +167,8 @@ public function propFind(PropFind $propFind, INode $node): void { | |||
public function handleUpdateProperties($path, PropPatch $propPatch): void { | |||
$node = $this->tree->getNodeForPath($path); | |||
if ($node instanceof AlbumRoot) { | |||
$propPatch->handle(self::LOCATION_PROPERTYNAME, function ($place) use ($node) { | |||
$this->albumMapper->setLocation($node->getAlbum()->getAlbum()->getId(), $place); | |||
$propPatch->handle(self::LOCATION_PROPERTYNAME, function ($location) use ($node) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see no front change for the dav property, was it still using the old nc:location
?
@artonge
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes,
Line 55 in afb22c9
<nc:location /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice, wanted to double check :)
After #1334