[bailing] fix bug

This commit is contained in:
EmArrow
2024-02-29 14:41:20 +08:00
parent 127908ba80
commit a38a9a19ba
2 changed files with 12 additions and 28 deletions

View File

@@ -69,20 +69,4 @@ public class PassPortSecret {
.sn(deviceId)
.certPath(path).build());
}
private static String getProductId() {
if (DebugConfig.getNetMode() == DebugConfig.NET_MODE_RELEASE
|| DebugConfig.getNetMode() == DebugConfig.NET_MODE_DEMO) {
return "10028";
}
return "10019";
}
private static String getProductSecret() {
if (DebugConfig.getNetMode() == DebugConfig.NET_MODE_RELEASE
|| DebugConfig.getNetMode() == DebugConfig.NET_MODE_DEMO) {
return "6b4c4db8286547b78b1def2d76f70fb3";
}
return "5cbcdc2240fa4104a70f28cdbe5ca69b";
}
}