diff --git a/plugins/builtin/source/content/providers.cpp b/plugins/builtin/source/content/providers.cpp index 95efc70ab..31098f0eb 100644 --- a/plugins/builtin/source/content/providers.cpp +++ b/plugins/builtin/source/content/providers.cpp @@ -32,7 +32,7 @@ namespace hex::plugin::builtin { for (const auto &id : providerIds) { auto providerSettings = nlohmann::json::parse(tar.readString(basePath / hex::format("{}.json", id))); - auto provider = ImHexApi::Provider::createProvider(providerSettings["type"].get()); + auto provider = ImHexApi::Provider::createProvider(providerSettings["type"].get(), true); if (provider == nullptr) { success = false; continue;