Skip to content

Commit 7f24682

Browse files
committed
Specify program IDs in RobotEvents request method to be for V5RC and VURC
1 parent a5401dd commit 7f24682

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ android {
1515
applicationId = "com.sunkensplashstudios.VRCRoboScout"
1616
minSdk = 30
1717
targetSdk = 34
18-
versionCode = 4
19-
versionName = "1.1.0"
18+
versionCode = 5
19+
versionName = "1.1.1"
2020

2121
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
2222
vectorDrawables {

app/src/main/java/com/sunkensplashstudios/VRCRoboScout/RoboScoutAPI.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,7 @@ class RoboScoutAPI {
242242
val response = client.get(requestUrl) {
243243
header("Authorization", "Bearer ${RoboScoutAPI.roboteventsAccessKey()}")
244244
url {
245+
params["program"] = listOf(1, 4)
245246
params.forEach { param ->
246247
if (param.value is List<*>) {
247248
for (value in param.value as List<*>) {

0 commit comments

Comments
 (0)