Fix incorrect device id when generating new devices

Gh0st [2016-08-22 18:47:58]
Fix incorrect device id when generating new devices
Filename
PokemonGo.RocketBot.Window/Forms/SettingForm.cs
diff --git a/PokemonGo.RocketBot.Window/Forms/SettingForm.cs b/PokemonGo.RocketBot.Window/Forms/SettingForm.cs
index 7b5d554..d8843b0 100644
--- a/PokemonGo.RocketBot.Window/Forms/SettingForm.cs
+++ b/PokemonGo.RocketBot.Window/Forms/SettingForm.cs
@@ -391,7 +391,7 @@ namespace PokemonGo.RocketBot.Window.Forms
                 : _deviceInfos.Where(d => d.DeviceBrand.ToLower() != "apple").ToList();
             var selectIndex = _deviceHelper.GetRandomIndex(candidateDevices.Count);

-            DeviceIdTb.Text = candidateDevices[selectIndex].DeviceId == "8525f6d8251f71b7"
+            DeviceIdTb.Text = candidateDevices[selectIndex].DeviceId == "8525f5d8201f78b5"
                 ? _deviceHelper.RandomString(16, "0123456789abcdef")
                 : candidateDevices[selectIndex].DeviceId;
             AndroidBoardNameTb.Text = candidateDevices[selectIndex].AndroidBoardName;
You may download the files in Public Git.