Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
c450516
Catch more invalid cache source storage paths
joshtrichards Aug 3, 2023
fe85d7d
fix: simplify `sourceData` check
skjnldsv Aug 5, 2023
e876408
fix: close cursor after reading the invitation
kesselb Aug 3, 2023
91e081b
Do not log passwords in debug mode
miaulalala Aug 23, 2023
61e61fb
fix(cache): Remove displayname cache entry on delete
nickvergessen Aug 28, 2023
652a8a8
feat: add switch to disable dns pinning
kesselb Aug 29, 2023
ce71b03
Fix(l10n): Update translations from Transifex
nextcloud-bot Aug 31, 2023
7deef46
fix(s3): fix handling verify_bucket_exists parameter
tcitworld Jun 26, 2023
844a8bb
Fix(l10n): Update translations from Transifex
nextcloud-bot Sep 1, 2023
322001f
Fix(l10n): Update translations from Transifex
nextcloud-bot Sep 2, 2023
f3e3f9b
Fix(l10n): Update translations from Transifex
nextcloud-bot Sep 3, 2023
057b65d
Fix(l10n): Update translations from Transifex
nextcloud-bot Sep 4, 2023
c3f146b
fix: prevent sharing permissions on user root folder
skjnldsv Sep 1, 2023
1340133
more share permission logic to storage wrapper
icewind1991 Aug 14, 2023
065f636
cleanup di for share permissions wrapper
icewind1991 Aug 15, 2023
c2a2416
enh: skip processing for empty response
kesselb Sep 4, 2023
3be562d
Fix(l10n): Update translations from Transifex
nextcloud-bot Sep 5, 2023
22d19af
Merge pull request #40229 from nextcloud/backport/40195/stable26
skjnldsv Sep 5, 2023
02e0098
Merge pull request #40260 from nextcloud/backport/40234/stable26
kesselb Sep 5, 2023
f7d890c
Merge pull request #39726 from nextcloud/backport/39698/stable26
blizzz Sep 5, 2023
db56190
Merge pull request #39816 from nextcloud/backport/39700/stable26
blizzz Sep 5, 2023
f755b50
Merge pull request #40187 from nextcloud/backport/39017/stable26
blizzz Sep 5, 2023
1c29d87
Merge pull request #40232 from nextcloud/sharing-mask-wrapper-26
blizzz Sep 5, 2023
f756d8f
Merge pull request #40076 from nextcloud/fix/stable26/remove-pw-from-…
blizzz Sep 5, 2023
4230aa8
Merge pull request #40085 from nextcloud/backport/40077/stable26
blizzz Sep 5, 2023
d5f6249
Merge pull request #40167 from nextcloud/backport/40108/stable26
blizzz Sep 6, 2023
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: simplify sourceData check
Co-authored-by: Git'Fellow <[email protected]>
Signed-off-by: John Molakvoæ <[email protected]>
  • Loading branch information
2 people authored and backportbot-nextcloud[bot] committed Aug 5, 2023
commit fe85d7d05d127f9ca04a39674123ca9da95c0201
2 changes: 1 addition & 1 deletion lib/private/Files/Cache/Cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ public function moveFromCache(ICache $sourceCache, $sourcePath, $targetPath) {
$targetPath = $this->normalize($targetPath);

$sourceData = $sourceCache->get($sourcePath);
if ($sourceData === false || $sourceData === null) {
if (!$sourceData) {
throw new \Exception('Invalid source storage path: ' . $sourcePath);
}

Expand Down