fix max size to not exceed 512 bytes

pull/191/head
Sacha Weatherstone 2022-08-09 12:19:50 +10:00
rodzic 503219c38c
commit addd11766c
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7AB2D7E206124B31
2 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -46,5 +46,5 @@
#This value may want to be a few bytes smaller to compensate for the parent fields.
*Compressed.data max_size:237
*Location.name max_size:40
*Location.description max_size:160
*Location.name max_size:30
*Location.description max_size:100

Wyświetl plik

@ -647,12 +647,12 @@ message Location {
bool locked = 5;
/*
* Name of the location - max 40 chars
* Name of the location - max 30 chars
*/
string name = 6;
/**
* Description of the location - max 160 chars
* Description of the location - max 100 chars
*/
string description = 7;