Commit 8193e07bbd05dfb37368bcce5c063a839fad6b69
Merge branch 'bugfix' into tr/publish
* bugfix: 充值返利邮件内容优化
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
src/models/Activity.lua
... | ... | @@ -355,7 +355,7 @@ activityFunc[Activity.ActivityType.PayBack] = { |
355 | 355 | local newVal = oldVal + twd |
356 | 356 | local gift, checkPoint = self.owner:getPaybackReward(oldVal, newVal) |
357 | 357 | if gift ~= "" then |
358 | - local strCp = table.concat(checkPoint ,"/") | |
358 | + local strCp = table.concat(checkPoint ,"、") | |
359 | 359 | self.owner:sendMail(MailId.PayBackAward, nil, gift, {newVal, strCp}) |
360 | 360 | end |
361 | 361 | self:updateActData(actType, newVal, not notify) | ... | ... |