Bluetooth: fix key name of showDisconnected

This commit is contained in:
Carter Li
2023-06-17 21:43:41 +08:00
parent 184a6de1e9
commit 6bb5f9d1ab
+1 -1
View File
@@ -111,7 +111,7 @@ void ffParseBluetoothJsonObject(FFinstance* instance, yyjson_val* module)
if (ffJsonConfigParseModuleArgs(key, val, &options.moduleArgs))
continue;
if (strcasecmp(key, "showConnected") == 0)
if (strcasecmp(key, "showDisconnected") == 0)
{
options.showDisconnected = yyjson_get_bool(val);
continue;