Skip to content

Commit a01538b

Browse files
committed
Increase max control duration hardlimit to UINT16_MAX
1 parent 78c1039 commit a01538b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Common/Constants/HardLimits.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ public static class HardLimits
66
public const byte MaxControlIntensity = 100;
77

88
public const ushort MinControlDuration = 300;
9-
public const ushort MaxControlDuration = 30000; // TODO: No reason to hard limit this to 30 seconds, can we extend it to ushort.MaxValue (65535)?
9+
public const ushort MaxControlDuration = ushort.MaxValue; // 65.535 seconds
1010

1111
public const int UsernameMinLength = 3;
1212
public const int UsernameMaxLength = 32;

0 commit comments

Comments
 (0)