修复下载游戏历史版本 游戏 ID 异常的问题

This commit is contained in:
juntao
2021-02-04 11:04:45 +08:00
parent af3fdb3cfb
commit 32b4570738
8 changed files with 13 additions and 21 deletions

View File

@ -35,7 +35,7 @@ public class DataCollectionUtils {
public static void uploadDownload(Context context, DownloadEntity downloadEntity, String status) {
Map<String, Object> map = new HashMap<>();
map.put("game", StringsKt.removeSuffix(downloadEntity.getName(), Constants.GAME_NAME_DECORATOR));
map.put("game_id", downloadEntity.getRealGameId(Constants.GAME_ID_DIVIDER));
map.put("game_id", downloadEntity.getGameId());
if (downloadEntity.isPluggable()) {
map.put("method", "插件化");
map.put("btn_status", "插件化");