提交 aa313a1f 编写于 作者: R Richard Stanway

UI: Don't try to create service if missing file

This would cause meaningless "Service '' not found" log entries.
上级 169764fc
......@@ -1118,6 +1118,9 @@ bool OBSBasic::LoadService()
obs_data_t *data =
obs_data_create_from_json_file_safe(serviceJsonPath, "bak");
if (!data)
return false;
obs_data_set_default_string(data, "type", "rtmp_common");
type = obs_data_get_string(data, "type");
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册