QinXiang

Results 9 comments of QinXiang

解决了吗 老哥 ,从日志来看,我也遇到相同的问题了

没特别仔细看源码, 貌似需要跑 logan-site 之后, 才会根据 logan_task 中的信息 解析日志到 logan_log_detail中。 老哥你可以试下

focusView.setOnTouchListener(new View.OnTouchListener() { @Override public boolean onTouch(View v, MotionEvent event) { if (event.getAction() == MotionEvent.ACTION_DOWN) { mActionDownTime = SystemClock.elapsedRealtime(); } else if (event.getAction() == MotionEvent.ACTION_UP) { if (SystemClock.elapsedRealtime() - mActionDownTime...

according to the edge [document](https://learn.microsoft.com/en-us/microsoft-edge/web-platform/password-reveal) > By default, the password reveal button is inserted into the Shadow DOM of all HTML input elements that have the type set to "password"....

自动重启是解决了,但是根本原因是什么呢,有哪位大神知道吗

anybody fixed it?

在 s-ui 的 client side 中配置 Port Ranges, 不同的客户端对这个配置解析不同, 你可以尝试配置类似于 40000:50000 或者是 40000-50000,看客户端能解析哪种。 在继续操作之前,你需要明白 hy2 默认是[不支持](https://v2.hysteria.network/docs/advanced/Port-Hopping/)端口跳跃的, 但是可以将通过转发, 将设置的端口都转发到 hy2 启用的端口中。类似于文档中的介绍,你可以在服务端设置转发规则。 ```shell # IPv4 iptables -t nat -A PREROUTING -i eth0...