chore: make lint happy about isDownloaded concat

Signed-off-by: Josh <josh.t.richards@gmail.com>
This commit is contained in:
Josh 2026-01-01 11:49:02 -05:00 committed by GitHub
parent a46f3bd21c
commit 30f2932817
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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')) {