2
0
mirror of https://github.com/ctrlcvs/xiaoyao-cvs-plugin.git synced 2024-12-23 03:20:52 +08:00

修复私聊撤回报错

This commit is contained in:
ctrlcvs 2023-01-14 11:08:36 +08:00
parent 609d2ceb7e
commit bc7ad7b40e
4 changed files with 69 additions and 66 deletions

View File

@ -28,7 +28,7 @@ function init() {
export async function Note(e, {
render
}, poke) {
if (!Cfg.get("sys.Note") && !poke) {
if (!Cfg.get("sys.Note") && !poke && !this.e?.isTask) {
return false;
}
let notes = new note(e);

View File

@ -114,7 +114,7 @@ export function recallMsg(e,r,times){
if(e.group){
e.group.recallMsg(r.message_id)
}else{
e.member.recallMsg(r.message_id)
e.friend.recallMsg(r.message_id)
}
},1000 * times)
}

View File

@ -8,18 +8,21 @@
background-color: rgb(243, 242, 241);
padding: 20px 0 10px 0 !important;
}
.topTitle table{
margin: 0 auto;
}
</style>
{{/block}}
{{block 'main'}}
<div class="topTitle">
<div class="topTitle" style="margin: 0 auth;">
</div>
<script src="{{_res_path}}/qrCode/js/jquery-1.10.2.min.js"></script>
<script src="{{_res_path}}/qrCode/js/jquery.qrcode.min.js"></script>
<script>
var config = {
width:600,//值是number类型, 表示的单位是px 必须传递
height:600,//值是number类型, 表示的单位是px 必须传递
width:500,//值是number类型, 表示的单位是px 必须传递
height:500,//值是number类型, 表示的单位是px 必须传递
text:"{{url}}".replace(/#38;/g,''),//text就表示二维码中存储的数据 必须传递
correctLevel:2,//取值为0|1|2|3 表示二维码的纠错级别0:L/1:M/2:Q/3:H ,默认0 可选参数
render:"table"//取值:table/canvas , 默认table 可选参数