You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At line 445 of server\runtime\storage\sqlite\index.js
if (file.indexOf(id) > 0 && fromTo && fromTo.from <= tots && fromTo.to >= fromts)
should change to
if (file.indexOf('_'+id+'_') > 0 && fromTo && fromTo.from <= tots && fromTo.to >= fromts)
to avoid query history data for FUXA Server, which id is "0"
The text was updated successfully, but these errors were encountered:
GitTurboy
changed the title
sqllite.js has a bug
sqllite index.js has a bug
Nov 10, 2022
At line 445 of server\runtime\storage\sqlite\index.js
if (file.indexOf(id) > 0 && fromTo && fromTo.from <= tots && fromTo.to >= fromts)
should change to
if (file.indexOf('_'+id+'_') > 0 && fromTo && fromTo.from <= tots && fromTo.to >= fromts)
to avoid query history data for FUXA Server, which id is "0"
The text was updated successfully, but these errors were encountered: