We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e821355 commit 655c676Copy full SHA for 655c676
src/components/Plugins/src/scripting/Configuration.cpp
@@ -54,7 +54,7 @@ SMM_API const char *scripting_Configuration_Fetch(const char *key)
54
std::map<std::string, std::any> config = g_Config->FetchConfiguration();
55
56
if (config.find(key) == config.end())
57
- return key;
+ return SerializeData(key).c_str();
58
59
std::any value = config.at(key);
60
return SerializeData(value).c_str();
0 commit comments