We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4cc76d commit ef666b2Copy full SHA for ef666b2
index.ts
@@ -45,7 +45,7 @@ const main = async (region: string, model: string): Promise<void> => {
45
Latest version:
46
PDA: ${pda}
47
CSC: ${csc}
48
- MODEM: ${modem}`);
+ MODEM: ${modem !== "" ? modem : "N/A"}`);
49
50
const nonce = {
51
encrypted: "",
@@ -101,7 +101,7 @@ const main = async (region: string, model: string): Promise<void> => {
101
.post(
102
"https://neofussvr.sslcs.cdngc.net/NF_DownloadBinaryInform.do",
103
getBinaryInformMsg(
104
- `${pda}/${csc}/${modem}/${pda}`,
+ `${pda}/${csc}/${modem !== "" ? modem : pda}/${pda}`,
105
region,
106
model,
107
nonce.decrypted
0 commit comments