Skip to content

Commit 9e8f6d9

Browse files
Fix folder editor bulk move bootstrap crash
1 parent c285bd1 commit 9e8f6d9

8 files changed

Lines changed: 14 additions & 6 deletions

archive/folderview.plus-2026.04.04.09.txz.sha256

Lines changed: 0 additions & 1 deletion
This file was deleted.

archive/folderview.plus-2026.04.04.10.txz.sha256

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
70f8efabc9a02afe4cb372eb29a0ba44dcb691773563b74c6902a4c083f2938e folderview.plus-2026.04.05.05.txz
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
4b0b8489c42357099037adbc10db29b09ac1e8cf5f39c4083ef0cdcf4fba91c2 folderview.plus-2026.04.05.06.txz

folderview.plus.plg

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,21 @@
66
<!ENTITY launch "Settings/FolderViewPlus">
77
<!ENTITY plugdir "/usr/local/emhttp/plugins/&name;">
88
<!ENTITY pluginURL "https://raw.githubusercontent.com/&github;/dev/folderview.plus.plg">
9-
<!ENTITY version "2026.04.05.04">
10-
<!ENTITY md5 "20ae8068cea9db09fbff89ea0a98b90f">
9+
<!ENTITY version "2026.04.05.06">
10+
<!ENTITY md5 "d2ef7d6d5e8bb297624bfaee7b379903">
1111
]>
1212

1313
<PLUGIN name="&name;" author="&author;" version="&version;" launch="&launch;" pluginURL="&pluginURL;" icon="folder-icon.png" support="https://forums.unraid.net/topic/197631-plugin-folderview-plus/" min="7.0.0">
1414
<CHANGES>
1515

16+
###2026.04.05.06
17+
- UX: Folder editor flows, previews, and bootstrap behavior.
18+
19+
20+
###2026.04.05.05
21+
- Fix: Folder editor startup no longer crashes on bulk-move-enabled builds when hydration updates Members-tab bulk move UI before the scope collector finishes initializing.
22+
23+
1624
###2026.04.05.04
1725
- UX: Folder editor flows, previews, and bootstrap behavior.
1826
- UX: Settings workspace layout, section flows, and table behavior.

src/folderview.plus/usr/local/emhttp/plugins/folderview.plus/scripts/folder.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4339,13 +4339,13 @@ const describeMemberBulkMoveScope = (scope) => {
43394339

43404340
const getCurrentMemberBulkMoveScope = () => String($('#fvMemberBulkScope').val() || 'shown').trim().toLowerCase() || 'shown';
43414341

4342-
const collectCurrentMemberBulkMoveScope = () => {
4342+
function collectCurrentMemberBulkMoveScope() {
43434343
const scope = getCurrentMemberBulkMoveScope();
43444344
const details = getFolderEditorMembersApi()?.collectBulkMoveScope(scope);
43454345
return details && typeof details === 'object'
43464346
? details
43474347
: { scope, names: [], skippedRegexNames: [], candidateCount: 0, movableCount: 0 };
4348-
};
4348+
}
43494349

43504350
function renderMemberBulkMoveTargets() {
43514351
const select = $('#fvMemberBulkTarget');

0 commit comments

Comments
 (0)