Skip to content

Commit

Permalink
Bump 1.9.1
Browse files Browse the repository at this point in the history
Also, fix typo
  • Loading branch information
tchapi committed Jan 21, 2022
1 parent e157726 commit 965eee3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Controller/DAVController.php
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ private function initServer()
// WebDAV plugins
if ($this->webDAVEnabled && $this->tmpDir && $this->publicDir) {
if (!is_dir($this->tmpDir) || !is_dir($this->publicDir)) {
throw new \Exception('The WebDAV temp dir and/or public dir are not available. Make sure they are created with the corect permissions.');
throw new \Exception('The WebDAV temp dir and/or public dir are not available. Make sure they are created with the correct permissions.');
}
$lockBackend = new \Sabre\DAV\Locks\Backend\File($this->tmpDir.'/locksdb');
$this->server->addPlugin(new \Sabre\DAV\Locks\Plugin($lockBackend));
Expand Down
2 changes: 1 addition & 1 deletion src/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@

final class Version
{
public const VERSION = '1.9.0';
public const VERSION = '1.9.1';
}

0 comments on commit 965eee3

Please sign in to comment.