Compare commits

..

2 Commits

Author SHA1 Message Date
x7z4w
54c2bd6245 [fdroid] Release version 2025.10.08-3
Signed-off-by: x7z4w <x7z4w@noreply.codeberg.org>
2025-10-08 17:31:14 +00:00
Jean-Baptiste
a02069b987 [android] Fix crash on the place page
Signed-off-by: Jean-Baptiste <jeanbaptiste.charron@outlook.fr>
2025-10-08 17:26:29 +00:00
2 changed files with 2 additions and 3 deletions

View File

@@ -1 +1 @@
version: 2025.10.09-3-FDroid+25100903
version: 2025.10.08-3-FDroid+25100803

View File

@@ -11,7 +11,6 @@ import java.util.Map;
public class Metadata implements Parcelable
{
// Values must correspond to the Metadata definition from indexer/feature_meta.hpp.
// Remember to also update IntRange below to match the max ID
public enum MetadataType
{
// Defined by classifier types now.
@@ -82,7 +81,7 @@ public class Metadata implements Parcelable
}
@NonNull
public static MetadataType fromInt(@IntRange(from = 1, to = 56) int metaType)
public static MetadataType fromInt(@IntRange(from = 1, to = 49) int metaType)
{
for (MetadataType type : values())
if (type.mMetaType == metaType)