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
fix: Use proper path
Signed-off-by: Julius Knorr <[email protected]>
  • Loading branch information
juliusknorr committed Mar 19, 2025
commit e00efed0a5c64daf0ac0af182724441d59ac94df
2 changes: 1 addition & 1 deletion lib/Service/WorkspaceService.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,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
Loading