Skip to content

Commit 508fa7c

Browse files
committed
fix errors with static vars
1 parent 19ad578 commit 508fa7c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

QuestAppVersionSwitcher/Adb/QAVSAdbInteractor.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ public static void Initialize()
5050

5151
// Launch the server.
5252
AdbWrapper.StartServer();
53-
this.device = device;
53+
QAVSAdbInteractor.device = device;
5454
}
5555

5656
// Restore the saved wireless debugging state.
5757
AdbWrapper.AdbWifiState = adbWifiState;
5858
} else {
59-
this.device = devices[0];
59+
QAVSAdbInteractor.device = devices[0];
6060
}
6161

6262
// Grant necessary permissions to all connected devices.

0 commit comments

Comments
 (0)