修改上报数据出错后的error的参数名

This commit is contained in:
zhl 2021-01-13 16:41:42 +08:00
parent 11dad2c3ed
commit 97f1760958

View File

@ -223,8 +223,8 @@ export class GameResultCommand extends Command<CardGameState, {}> {
.then(function (response) {
debugRoom(JSON.stringify(response.data));
})
.catch(function (error) {
error(error);
.catch(function (err) {
error(err);
});
}