Fixed some subscribe issues

This commit is contained in:
WolverinDEV 2019-10-16 21:11:54 +02:00
parent 3b3574d54d
commit 60ed95fb63
2 changed files with 3 additions and 2 deletions

View File

@ -486,6 +486,7 @@ i_group_modify_power,
b_channel_modify_maxfamilyclients,
b_channel_modify_sortorder,
b_channel_modify_needed_talk_power,
i_channel_permission_modify_power,
b_channel_create_child,
b_channel_create_permanent,
b_channel_create_temporary,

View File

@ -807,8 +807,8 @@ namespace ts {
};
struct PermissionFlaggedValue {
PermissionValue value;
bool has_value;
PermissionValue value = permNotGranted;
bool has_value = false;
};
static constexpr PermissionFlaggedValue empty_permission_flagged_value{0, false};