Compare commits

..

1 Commits

Author SHA1 Message Date
x7z4w
28cb9e3029 [fdroid] Release version 2025.10.02-2
Signed-off-by: x7z4w <x7z4w@noreply.codeberg.org>
2025-10-02 13:19:20 +00:00
2 changed files with 3 additions and 4 deletions

View File

@@ -1 +1 @@
version: 2025.10.09-3-FDroid+25100903
version: 2025.10.02-2-FDroid+25100202

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.
@@ -72,7 +71,7 @@ public class Metadata implements Parcelable
FMD_PANORAMAX(52),
FMD_CHECK_DATE(53),
FMD_CHECK_DATE_OPEN_HOURS(54),
FMD_BRANCH(55),
//FMD_BRANCH(55),
FMD_CHARGE_SOCKETS(56);
private final int mMetaType;
@@ -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)