Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Return proper principal on the uploads collection listing
Signed-off-by: Roeland Jago Douma <[email protected]>
  • Loading branch information
rullzer committed Jan 10, 2018
commit e5cc8ebe7a14ab421a83be2b664a9bb976c0d063
3 changes: 2 additions & 1 deletion apps/dav/lib/Upload/UploadHome.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ function delete() {
}

function getName() {
return 'uploads';
list(,$name) = \Sabre\Uri\split($this->principalInfo['uri']);
return $name;
}

function setName($name) {
Expand Down