firefoxpwa: fix ULID length typo (#7653)

A ULID is 26 characters, not 16
This commit is contained in:
diffy
2025-08-11 02:18:25 +10:00
committed by GitHub
parent e7969e2ffa
commit 91586008a2

View File

@@ -62,7 +62,7 @@ in
default = { }; default = { };
description = '' description = ''
Attribute set of profile options. The keys of that attribute set consist of Attribute set of profile options. The keys of that attribute set consist of
ULIDs. A ULID is made of 16 characters, each of which is one of ULIDs. A ULID is made of 26 characters, each of which is one of
'0123456789ABCDEFGHJKMNPQRSTVWXYZ' (Excluding I, L, O and U). See '0123456789ABCDEFGHJKMNPQRSTVWXYZ' (Excluding I, L, O and U). See
<https://github.com/ulid/spec?tab=readme-ov-file#canonical-string-representation>. <https://github.com/ulid/spec?tab=readme-ov-file#canonical-string-representation>.
''; '';
@@ -95,7 +95,7 @@ in
default = { }; default = { };
description = '' description = ''
Attribute set of site options for this profile. The keys of that attribute set Attribute set of site options for this profile. The keys of that attribute set
consist of ULIDs. A ULID is made of 16 characters, each of which is one of consist of ULIDs. A ULID is made of 26 characters, each of which is one of
'0123456789ABCDEFGHJKMNPQRSTVWXYZ' (Excluding I, L, O and U). See '0123456789ABCDEFGHJKMNPQRSTVWXYZ' (Excluding I, L, O and U). See
<https://github.com/ulid/spec?tab=readme-ov-file#canonical-string-representation>. <https://github.com/ulid/spec?tab=readme-ov-file#canonical-string-representation>.
Site ULIDs must be unique across profiles. Site ULIDs must be unique across profiles.