Implement lazy loading of chats via lazy portal

This commit is contained in:
kwaroran
2025-04-28 15:38:57 +09:00
parent 39048dd142
commit 05c51f333f
3 changed files with 190 additions and 96 deletions

View File

@@ -1708,6 +1708,12 @@ function basicMatcher (p1:string,matcherArg:matcherArg,vars:{[key:string]:string
}
return total.toString()
}
case 'fromhex':{
return Number.parseInt(arra[1], 16).toString()
}
case 'tohex':{
return Number.parseInt(arra[1]).toString(16)
}
}
}
if(p1.startsWith('random')){