ui: fix final time-elapsed and speed for fsearch

This commit is contained in:
ed 2024-12-03 21:43:38 +00:00
parent a6a2ee5b6b
commit 8a631f045e

View file

@ -1556,9 +1556,11 @@ function up2k_init(subtle) {
if (nhash) {
st.time.hashing += td;
t.push(['u2etah', st.bytes.hashed, st.bytes.hashed, st.time.hashing]);
if (uc.fsearch)
if (uc.fsearch) {
st.time.busy += td;
t.push(['u2etat', st.bytes.hashed, st.bytes.hashed, st.time.hashing]);
}
}
var b_up = st.bytes.inflight + st.bytes.uploaded,
b_fin = st.bytes.inflight + st.bytes.finished;