Fix more problems related to save settings

This commit is contained in:
lazio579 2019-03-25 10:47:04 +08:00
parent 76c3d08617
commit d03d54b9da

View File

@ -1197,7 +1197,7 @@ show_enable_fast_stream(gpointer param) {
return g_strdup_printf("%s", srv->is_fast_stream_enabled ? "true" : "false");
}
if (CAN_SAVE_OPTS_PROPERTY(opt_type)) {
return srv->is_fast_stream_enabled ? g_strdup("true") : NULL;
return srv->is_fast_stream_enabled ? g_strdup("true") : g_strdup("false");
}
return NULL;
}