Chore: add sanity check on tag length

This commit is contained in:
Pieter Vander Vennet 2024-09-24 16:39:58 +02:00
parent dfce217288
commit 7a892480cc

View file

@ -19,6 +19,9 @@ export class Tag extends TagsFilter {
if (value === undefined) {
throw `Invalid value while constructing a Tag with key '${key}': value is undefined`
}
if(value.length > 255 || key.length > 255){
throw "Invalid tag: length is over 255"
}
if (value === "*") {
console.warn(`Got suspicious tag ${key}=* ; did you mean ${key}~* ?`)
}