mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
Merge pull request #25129 from nextcloud/bugfix/smb-notify-subpath
Fix files_external:notify command when running withing a subdirectory
This commit is contained in:
commit
e6fd9b2f55
1 changed files with 1 additions and 1 deletions
|
|
@ -50,7 +50,7 @@ class SMBNotifyHandler implements INotifyHandler {
|
|||
*/
|
||||
public function __construct(\Icewind\SMB\INotifyHandler $shareNotifyHandler, $root) {
|
||||
$this->shareNotifyHandler = $shareNotifyHandler;
|
||||
$this->root = $root;
|
||||
$this->root = str_replace('\\', '/', $root);
|
||||
}
|
||||
|
||||
private function relativePath($fullPath) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue