Video now has to be manually activated in order to watch it

This commit is contained in:
WolverinDEV 2020-12-10 13:33:08 +01:00
parent c8c6738569
commit 1ae3b59e14
2 changed files with 8 additions and 0 deletions

View File

@ -195,6 +195,10 @@ const std::vector<ErrorType> ts::avariableErrors = {
{0xE000, "resource_limit_reached" , "resource limit reached" },
define_error_description(broadcast_invalid_id, "the broadcast does not exists"),
define_error_description(broadcast_invalid_type, "the broadcast type is invalid"),
define_error_description(broadcast_invalid_client, "the broadcasting client does not exists"),
{0xFFFF, "custom_error" , "costume" },
};
ErrorType ErrorType::Success = avariableErrors[0];

View File

@ -198,6 +198,10 @@ namespace ts {
rtc_missing_target_channel = 0x2300,
broadcast_invalid_id = 0x2400,
broadcast_invalid_type = 0x2401,
broadcast_invalid_client = 0x2402,
custom_error = 0xffff
};
};