处理掉一些BUG

This commit is contained in:
super
2026-03-30 22:47:19 +08:00
parent d9487b6885
commit 0f1f471590
6 changed files with 8 additions and 7 deletions

View File

@@ -294,7 +294,7 @@ public class ZiniaoAuthService {
.queryParam("storeId", storeId)
.queryParam("openapiToken", loginToken)
.queryParam("userId", userId)
.queryParam("launchUrl", encodedLaunchUrl)
.queryParam("lanuchUrl", encodedLaunchUrl)
.queryParam("autoopen", Boolean.TRUE.equals(ziniaoProperties.getOpenStoreAutoOpen()))
.queryParam("debuggPort", ziniaoProperties.getOpenStoreDebugPort())
.queryParam("notPromptForDownload", Boolean.TRUE.equals(ziniaoProperties.getOpenStoreNotPromptForDownload()) ? 1 : 0);
@@ -303,7 +303,7 @@ public class ZiniaoAuthService {
builder.queryParam("forceDownloadPath", encodedPath);
}
if (ziniaoProperties.getOpenStoreExtraArgs() != null && !ziniaoProperties.getOpenStoreExtraArgs().isBlank()) {
builder.queryParam("extraArgs", ziniaoProperties.getOpenStoreExtraArgs());
builder.queryParam("options_argument", ziniaoProperties.getOpenStoreExtraArgs());
}
return builder.build().encode().toUriString();
}