We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 508fa7c commit f056a2bCopy full SHA for f056a2b
1 file changed
QuestAppVersionSwitcher/Adb/AdbWrapper.cs
@@ -94,7 +94,7 @@ public static ExitInfo RunAdbCommand(string arguments, AdbDevice? device = null)
94
StartServer();
95
if(device != null) {
96
arguments = "-s \"" + device.id + "\" " + arguments;
97
- if(!Logger.notAllowedStrings.Contains(device.id)) Logger.notAllowedStrings.Add(device.id)
+ if(!Logger.notAllowedStrings.Contains(device.id)) Logger.notAllowedStrings.Add(device.id);
98
}
99
100
var procStartInfo = new ProcessStartInfo(AdbPath)
0 commit comments