Skip to content

Commit

Permalink
js: do not try to scan bitfocus stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Jan 7, 2025
1 parent 11e1ae5 commit 7449895
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/plugins/score-plugin-js/JS/LibraryHandler.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ class ModuleLibraryHandler final

void addPath(std::string_view path) override
{
add(QString::fromUtf8(path.data(), path.length()));
if(path.find("companion-bundled-modules") == std::string_view::npos)
add(QString::fromUtf8(path.data(), path.length()));
}

bool onDoubleClick(const QString& path, const score::DocumentContext& ctx) override
Expand Down

0 comments on commit 7449895

Please sign in to comment.