Nilsen
Nilsen
see my PR https://github.com/utkarshcmu/wizzy/pull/125
I also noticed that the first page scrolls to top first before going to second one. Howevere interesting is why the home-page not accepting "savedPosition" if the second page had...
I played around with this issue. If we set the return position always to top:100 ```javascript scrollBehavior(to, from, savedPosition) { return { top: 100, left: 0 }; }, ``` In...
Is there any chance there would be some work at this issue? It's still the same at RC6. :( I thinks it's a **major bug**, because it completely takes dows...
Hi @dangngoctam00 thank you, I will try it out. Does it actually means that "inactive allocation" would always have peer usage (peer_received_packets and, ss->peer_sent_packets) equal zero ?
Hi @dangngoctam00 , No, sorry, I have not yet done a deep investigation on this issue. However, it is definitely on my to-do list. As soon as I get any...
Hi, so I finaly was able to run tests. What I did is introduced a marker in a session and then set it to 1, as soon as packet size...
here is more code in case someone would like to reproduce: ``` ns_turn_session.h struct _ts_ur_super_session { ... int relay_marker; } ns_ioalib_engine_impl.c void turn_report_session_usage(void *session, int force_invalid) { if (server &&...
the more correct if sequence would be: ``` if ((ss->received_packets + ss->sent_packets + ss->peer_received_packets + ss->peer_sent_packets) != 0 && ((ss->received_packets + ss->sent_packets + ss->peer_received_packets + ss->peer_sent_packets) & 4095) == 0)...
After a while of testing, I noticed, that my approach is not good. doing ``` if ((ss->received_packets + ss->sent_packets + ss->peer_received_packets + ss->peer_sent_packets) != 0 && ((ss->received_packets + ss->sent_packets +...