Skip to content

Commit

Permalink
generate path if app _DOES_ exist
Browse files Browse the repository at this point in the history
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
  • Loading branch information
ArtificialOwl committed Jul 18, 2023
1 parent 50650d2 commit ff19892
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Model/ModelManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ public function generateLinkToCircle(string $singleId): string {
return '';
}

if (!$this->appManager->isInstalled(substr($path, 0, $pos))) {
if ($this->appManager->isInstalled(substr($path, 0, $pos))) {
$this->pathLinkGeneration = $path;
}
}
Expand Down

0 comments on commit ff19892

Please sign in to comment.