[android] Fixed @IntRange

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk
2025-05-24 22:50:33 +02:00
committed by Konstantin Pastbin
parent 220def168d
commit f912555b76

View File

@@ -76,7 +76,7 @@ public class Metadata implements Parcelable
}
@NonNull
public static MetadataType fromInt(@IntRange(from = 1, to = 41) int metaType)
public static MetadataType fromInt(@IntRange(from = 1, to = 49) int metaType)
{
for (MetadataType type : values())
if (type.mMetaType == metaType)