Commit 4f54737f1ec289fcb68e46782d26655011729e87
1 parent
777ea4cd
Exists in
master
and in
3 other branches
x
Showing
1 changed file
with
4 additions
and
1 deletions
Show diff stats
wxsdk/service/GameService.ts
| @@ -146,7 +146,10 @@ export default class GameService { | @@ -146,7 +146,10 @@ export default class GameService { | ||
| 146 | * 文本检测 | 146 | * 文本检测 |
| 147 | */ | 147 | */ |
| 148 | checkmsg(scene:number,content:string,nickname?:string,title?:string,signature?:string){ | 148 | checkmsg(scene:number,content:string,nickname?:string,title?:string,signature?:string){ |
| 149 | - return SDKApi.checkmsg(scene,content,nickname,title,signature) | 149 | + return SDKApi.checkmsg({ |
| 150 | + ...this.buildParams(), | ||
| 151 | + scene,content,nickname,title,signature | ||
| 152 | + }) | ||
| 150 | } | 153 | } |
| 151 | 154 | ||
| 152 | 155 |