Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: Use proper path
Signed-off-by: Julius Knorr <[email protected]>
  • Loading branch information
juliusknorr authored and backportbot[bot] committed Mar 18, 2025
commit a959273eb4dc227abff7667c75fb12e5f7ccdf90
2 changes: 1 addition & 1 deletion lib/Service/WorkspaceService.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function __construct(IL10N $l10n) {
public function getFile(Folder $folder): ?File {
foreach ($this->getSupportedFilenames() as $filename) {
try {
$exists = $folder->getStorage()->getCache('')->get($filename);
$exists = $folder->getStorage()->getCache()->get($folder->getInternalPath() . '/' . $filename);
if ($exists) {
$file = $folder->get($filename);
if ($file instanceof File) {
Expand Down