Skip to content

Commit

Permalink
Merge pull request #57 from wonder-game/develop
Browse files Browse the repository at this point in the history
fix: 修复旧包的androidid问题
  • Loading branch information
linkunyuan authored Oct 8, 2023
2 parents ab8bc24 + 70e689f commit 675a648
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Common/Classes/LamUnit.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ static public function utilityParam(Request $request)
$utility['versioncode'] = 1;
}

// 修复旧包的android
if ($request->getRequestParam('android') && ! $request->getRequestParam('androidid')) {
$utility['androidid'] = $request->getRequestParam('android');
}

self::withParams($request, $utility, false);
}

Expand Down

0 comments on commit 675a648

Please sign in to comment.