Add android and ios to be listed (no arch specific stuff yet)

This commit is contained in:
2025-11-04 22:13:30 -07:00
parent 1ec8ad3ffb
commit 2e57668721

View File

@@ -31,7 +31,9 @@ export async function handler(context: Context, db: MySql2Database) {
else {
return jsonResponse({ message: "Unsupported architecture for macOS", versions: null, games: null }, 400)
}
} else {
} else if (platform == "android") platString = "android"
else if (platform == "ios") platString = "ios"
else {
return jsonResponse({ message: "Unsupported platform", versions: null, games: null }, 400)
}
}