Skip to content

Commit

Permalink
MediaAccess reported an error in case of non authentication.
Browse files Browse the repository at this point in the history
  • Loading branch information
msyk committed Oct 15, 2023
1 parent 44af5e6 commit bd9aa87
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/php/MediaAccess.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class MediaAccess
/**
* @var ?string
*/
private ?string $cookieUser; // set with the checkAuthentication method.
private ?string $cookieUser = null; // set with the checkAuthentication method.
/**
* @var int
*/
Expand Down
5 changes: 5 additions & 0 deletions src/php/ServiceServerProxy.php
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,11 @@ private function startServer(): void
}
$this->executeCommand($cmd);
}
/*
* About forever on Apr 14, 2019 by Masayuki Nii
* The forever-win adds two short-cut links in node_module/.bin, but the forever doesn't.
* So we don't execute command in the node_module/.bin directory.
*/

/**
* @return void
Expand Down

0 comments on commit bd9aa87

Please sign in to comment.