In file_browser.install line 57, the backbone path is defined as
$backbone_path = \Drupal::service('library.libraries_directory_file_finder')->find('backbone') . '/backbone-min.js';
Then on line 62 the "backbone-min.js" is appended again
if ($backbone_path) {
$backbone_path = $backbone_path . '/backbone-min.js';
}This results in a path of libraries/backbone/backbone-min.js/backbone-min.js
Line 57 should have the appended filename removed to match the other library checks
Issue fork file_browser-3552424
Show commands
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #4
dhansen commentedBranch/MR created. I also slipped in some fixes for two other issues:
Also bumping the priority on this to Major as it can render one feature unusable with no workaround if you're installing from composer.libraries.json and cause a significant admin- or developer-facing bug with no workaround that's appearing in the Status Report.
Comment #5
d.fisher commentedThank you for this. I'm about to go on leave for 3 weeks so will merge and release now!
Comment #7
d.fisher commentedFixed and released in 2.0.7.
Comment #9
d.fisher commented