mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
chore: make lint happy about isDownloaded concat
Signed-off-by: Josh <josh.t.richards@gmail.com>
This commit is contained in:
parent
a46f3bd21c
commit
30f2932817
1 changed files with 1 additions and 1 deletions
|
|
@ -422,7 +422,7 @@ class Installer {
|
|||
*/
|
||||
public function isDownloaded(string $appId): bool {
|
||||
foreach (\OC::$APPSROOTS as $dir) {
|
||||
$appPath = $dir['path'] . '/' . $appId;
|
||||
$appPath = $dir['path'] . '/' . $appId;
|
||||
|
||||
// An app is considered "downloaded" if the directory exists with info.xml
|
||||
if (is_dir($appPath) && file_exists($appPath . '/appinfo/info.xml')) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue